summaryrefslogtreecommitdiffstats
path: root/libao2/audio_plugin.h
diff options
context:
space:
mode:
authorsteve <steve@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-04 15:44:04 +0000
committersteve <steve@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-04 15:44:04 +0000
commitbc14bb79f1f434dd3c266d775b705a8cca5838e9 (patch)
treee8d5d0cc9dd7f0da8cd08e298379ae104ba103f6 /libao2/audio_plugin.h
parent15c31b2055f7180e6a0a82a482fa2e94850d3697 (diff)
downloadmpv-bc14bb79f1f434dd3c266d775b705a8cca5838e9.tar.bz2
mpv-bc14bb79f1f434dd3c266d775b705a8cca5838e9.tar.xz
include pl_surround in available plugins
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3316 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libao2/audio_plugin.h')
-rw-r--r--libao2/audio_plugin.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/libao2/audio_plugin.h b/libao2/audio_plugin.h
index c20253b64e..e40846b276 100644
--- a/libao2/audio_plugin.h
+++ b/libao2/audio_plugin.h
@@ -48,14 +48,17 @@ extern ao_plugin_cfg_t ao_plugin_cfg;
// 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 */