filter for adding a center channel, adding a high pass filter would be nice

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14751 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2005-02-21 17:14:00 +00:00
parent f139d7ead2
commit 5aa4b2505f
1 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,6 @@
#endif
#include "af.h"
#include "../config.h"
// Static list of filters
extern af_info_t af_info_dummy;
@ -29,6 +28,7 @@ extern af_info_t af_info_lavcresample;
extern af_info_t af_info_sweep;
extern af_info_t af_info_hrtf;
extern af_info_t af_info_ladspa;
extern af_info_t af_info_center;
static af_info_t* filter_list[]={
&af_info_dummy,
@ -56,6 +56,7 @@ static af_info_t* filter_list[]={
#ifdef HAVE_LADSPA
&af_info_ladspa,
#endif
&af_info_center,
NULL
};