diff --git a/vlcplugins/CMakeLists.txt b/vlcplugins/CMakeLists.txt deleted file mode 100644 index 52740dfd5..000000000 --- a/vlcplugins/CMakeLists.txt +++ /dev/null @@ -1,32 +0,0 @@ -cmake_minimum_required(VERSION 2.6) - -set(CMAKE_C_FLAGS "-Wall") -set(CMAKE_CXX_FLAGS "-Wnon-virtual-dtor -Woverloaded-virtual -Wall") - -# Source files -set(CLEMENTINE-SCOPE-SOURCES - clementinescope.cpp -) - -include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR}) -include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../src") - -if (WIN32) - # This gets linked at runtime on unix - set(MAYBE_CLEMENTINE_LIB_LIBRARIES clementine_lib) -endif (WIN32) - -add_library(clementine_scope SHARED - ${CLEMENTINE-SCOPE-SOURCES} -) -target_link_libraries(clementine_scope - ${VLC_PLUGIN_LIBRARIES} - ${QT_LIBRARIES} - ${MAYBE_CLEMENTINE_LIB_LIBRARIES} -) - -if (NOT WIN32) - install(TARGETS clementine_scope - LIBRARY DESTINATION ${VLC_PLUGIN_LIBDIR}/vlc/clementine - ) -endif (NOT WIN32) diff --git a/vlcplugins/clementinescope.cpp b/vlcplugins/clementinescope.cpp deleted file mode 100644 index bb4d01266..000000000 --- a/vlcplugins/clementinescope.cpp +++ /dev/null @@ -1,70 +0,0 @@ -/* This file is part of Clementine. - - Clementine is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - Clementine is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Clementine. If not, see . -*/ - -#define __PLUGIN__ -#define MODULE_STRING "clementine_scope" -#define MODULE_NAME clementine_scope - -#include "engines/vlcengine.h" - -#include -#include -#include -#include - -#include - -// Forward declarations -static int Open ( vlc_object_t * ); -static void DoWork( aout_instance_t *p_aout, aout_filter_t *p_filter, - aout_buffer_t *p_in_buf, aout_buffer_t *p_out_buf ); - -// Module definition -vlc_module_begin () - set_description("Internal plugin for Clementine's analyzer") - set_shortname("clementine_scope") - set_category( CAT_AUDIO ) - set_subcategory( SUBCAT_AUDIO_VISUAL ) - set_capability( "audio filter", 0 ) - set_callbacks( Open, 0 ) - add_shortcut( "clementine_scope") -vlc_module_end () - - -// Called once for every track -static int Open( vlc_object_t *p_this ) { - aout_filter_t *p_filter = (aout_filter_t *)p_this; - - if( ( p_filter->input.i_format != VLC_FOURCC('f','l','3','2') && - p_filter->input.i_format != VLC_FOURCC('f','i','3','2') ) ) { - return VLC_EGENERIC; - } - - p_filter->pf_do_work = DoWork; - p_filter->b_in_place= 1; - - return VLC_SUCCESS; -} - -// Called continuously while a track is playing -static void DoWork( aout_instance_t *p_aout, aout_filter_t *p_filter, - aout_buffer_t *p_in_buf, aout_buffer_t *p_out_buf ) { - Q_UNUSED(p_aout); - Q_UNUSED(p_out_buf); - VlcEngine::SetScopeData( - reinterpret_cast(p_in_buf->p_buffer), - p_in_buf->i_nb_samples * aout_FormatNbChannels(&p_filter->input)); -}