summaryrefslogtreecommitdiffstats
path: root/libaf/af.c
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-10-21 03:32:31 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-10-21 03:32:31 +0000
commit7981c2e20b4fff03657d78dc7b63a8f5064ee9bc (patch)
tree96e85fab7bfc5cea34a5a117083b9a1a5c3e40f2 /libaf/af.c
parent05e19b3333de6332a9952ab6bf94a29de067656e (diff)
downloadmpv-7981c2e20b4fff03657d78dc7b63a8f5064ee9bc.tar.bz2
mpv-7981c2e20b4fff03657d78dc7b63a8f5064ee9bc.tar.xz
libavcodec resampling ...
libaf doesnt seem to support planar audio, so we need to convert it :( git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13714 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libaf/af.c')
-rw-r--r--libaf/af.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libaf/af.c b/libaf/af.c
index c0dcd7d78a..9189ce0b37 100644
--- a/libaf/af.c
+++ b/libaf/af.c
@@ -25,6 +25,7 @@ extern af_info_t af_info_sub;
extern af_info_t af_info_export;
extern af_info_t af_info_volnorm;
extern af_info_t af_info_extrastereo;
+extern af_info_t af_info_lavcresample;
static af_info_t* filter_list[]={
&af_info_dummy,
@@ -44,6 +45,9 @@ static af_info_t* filter_list[]={
#endif
&af_info_volnorm,
&af_info_extrastereo,
+#ifdef USE_LIBAVCODEC
+ &af_info_lavcresample,
+#endif
NULL
};