diff options
author | Robert Swain <robert.swain@gmail.com> | 2008-01-12 11:11:19 +0000 |
---|---|---|
committer | Andreas Ă–man <andreas@lonelycoder.com> | 2008-01-12 11:11:19 +0000 |
commit | 4eb7a735cb7218794909e19773415be57ec959e4 (patch) | |
tree | 63a307e8d8395993efab8a29a3678102339dccdc /libavcodec/ac3dec.c | |
parent | f5b410312fb201e819f158c78d3a8266dd07eae9 (diff) | |
download | ffmpeg-4eb7a735cb7218794909e19773415be57ec959e4.tar.gz |
Make the Kaiser-Bessel window generator a common function
Patch by Robert Swain, robert d swain a gmail d com
Originally committed as revision 11514 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3dec.c')
-rw-r--r-- | libavcodec/ac3dec.c | 26 |
1 files changed, 1 insertions, 25 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index fb23725269..5b0f868397 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -197,30 +197,6 @@ typedef struct { } AC3DecodeContext; /** - * Generate a Kaiser-Bessel Derived Window. - */ -static void ac3_window_init(float *window) -{ - int i, j; - double sum = 0.0, bessel, tmp; - double local_window[256]; - double alpha2 = (5.0 * M_PI / 256.0) * (5.0 * M_PI / 256.0); - - for (i = 0; i < 256; i++) { - tmp = i * (256 - i) * alpha2; - bessel = 1.0; - for (j = 100; j > 0; j--) /* default to 100 iterations */ - bessel = bessel * tmp / (j * j) + 1; - sum += bessel; - local_window[i] = sum; - } - - sum++; - for (i = 0; i < 256; i++) - window[i] = sqrt(local_window[i] / sum); -} - -/** * Symmetrical Dequantization * reference: Section 7.3.3 Expansion of Mantissas for Symmetrical Quantization * Tables 7.19 to 7.23 @@ -301,7 +277,7 @@ static int ac3_decode_init(AVCodecContext *avctx) ac3_tables_init(); ff_mdct_init(&s->imdct_256, 8, 1); ff_mdct_init(&s->imdct_512, 9, 1); - ac3_window_init(s->window); + ff_kbd_window_init(s->window); dsputil_init(&s->dsp, avctx); av_init_random(0, &s->dith_state); |