[SCM] libav/experimental: select more sensible default windows (= attenuation beyond the dynamic range of your input is silly if it negatively affects other parameters)

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:58:04 UTC 2013


The following commit has been merged in the experimental branch:
commit 14f887efc61e95fc5b983dbb799ad9e0be50cfe2
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Thu Mar 22 00:16:41 2007 +0000

    select more sensible default windows (= attenuation beyond the dynamic range of your input is silly if it negatively affects other parameters)
    
    Originally committed as revision 8473 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/resample2.c b/libavcodec/resample2.c
index 10e98e5..ebda7e5 100644
--- a/libavcodec/resample2.c
+++ b/libavcodec/resample2.c
@@ -37,6 +37,7 @@
 #define FELEM2 int32_t
 #define FELEM_MAX INT16_MAX
 #define FELEM_MIN INT16_MIN
+#define WINDOW_TYPE 9
 #else
 #define FILTER_SHIFT 30
 
@@ -44,6 +45,7 @@
 #define FELEM2 int64_t
 #define FELEM_MAX INT32_MAX
 #define FELEM_MIN INT32_MIN
+#define WINDOW_TYPE 12
 #endif
 
 
@@ -177,7 +179,7 @@ AVResampleContext *av_resample_init(int out_rate, int in_rate, int filter_size,
 
     c->filter_length= FFMAX((int)ceil(filter_size/factor), 1);
     c->filter_bank= av_mallocz(c->filter_length*(phase_count+1)*sizeof(FELEM));
-    av_build_filter(c->filter_bank, factor, c->filter_length, phase_count, 1<<FILTER_SHIFT, 1);
+    av_build_filter(c->filter_bank, factor, c->filter_length, phase_count, 1<<FILTER_SHIFT, WINDOW_TYPE);
     memcpy(&c->filter_bank[c->filter_length*phase_count+1], c->filter_bank, (c->filter_length-1)*sizeof(FELEM));
     c->filter_bank[c->filter_length*phase_count]= c->filter_bank[c->filter_length - 1];
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list