1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-11 17:39:38 +00:00

include pl_surround in available plugins

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3316 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
steve 2001-12-04 15:44:04 +00:00
parent 15c31b2055
commit bc14bb79f1

View File

@ -48,14 +48,17 @@ extern ao_plugin_cfg_t ao_plugin_cfg;
// This block should not be available in the pl_xxxx files // This block should not be available in the pl_xxxx files
// due to compilation issues // due to compilation issues
#ifndef PLUGIN #ifndef PLUGIN
#define NPL 2+1 // Number of PLugins ( +1 list ends with NULL ) #define NPL 3+1 // Number of PLugins ( +1 list ends with NULL )
// List of plugins // List of plugins
extern ao_plugin_functions_t audio_plugin_delay; extern ao_plugin_functions_t audio_plugin_delay;
extern ao_plugin_functions_t audio_plugin_format; extern ao_plugin_functions_t audio_plugin_format;
extern ao_plugin_functions_t audio_plugin_surround;
#define AO_PLUGINS { \ #define AO_PLUGINS { \
&audio_plugin_delay, \ &audio_plugin_delay, \
&audio_plugin_format, \ &audio_plugin_format, \
&audio_plugin_surround, \
NULL \ NULL \
} }
#endif /* PLUGIN */ #endif /* PLUGIN */