Mercurial > mplayer.hg
changeset 3315:bbd0a1c1262a
include pl_surround in available plugins
author | steve |
---|---|
date | Tue, 04 Dec 2001 15:44:04 +0000 |
parents | 7d2565bd1ccf |
children | bb1d608c73ae |
files | libao2/audio_plugin.h |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libao2/audio_plugin.h Tue Dec 04 15:43:08 2001 +0000 +++ b/libao2/audio_plugin.h Tue Dec 04 15:44:04 2001 +0000 @@ -48,14 +48,17 @@ // This block should not be available in the pl_xxxx files // due to compilation issues #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 extern ao_plugin_functions_t audio_plugin_delay; extern ao_plugin_functions_t audio_plugin_format; +extern ao_plugin_functions_t audio_plugin_surround; + #define AO_PLUGINS { \ &audio_plugin_delay, \ &audio_plugin_format, \ + &audio_plugin_surround, \ NULL \ } #endif /* PLUGIN */