From 1ffc6e83276b24ffaea586c83b7aabb904e4be4b Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Thu, 5 Nov 2009 18:29:06 +0000 Subject: Add ff_init_ff_cos_tabs function and use it in rdft.c to ensure that the necessary ff_cos_tabs tables are initialized. Fixes issue 1507 (QDM2 broken since r20237 without hardcoded tables). Originally committed as revision 20464 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dsputil.h | 6 ++++++ libavcodec/fft.c | 24 +++++++++++++++--------- libavcodec/rdft.c | 1 + 3 files changed, 22 insertions(+), 9 deletions(-) (limited to 'libavcodec') diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index d64ef939ac..4079396ff5 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -769,6 +769,12 @@ extern COSTABLE(32768); extern COSTABLE(65536); extern COSTABLE_CONST FFTSample* const ff_cos_tabs[17]; +/** + * Initializes the cosine table in ff_cos_tabs[index] + * \param index index in ff_cos_tabs array of the table to initialize + */ +void ff_init_ff_cos_tabs(int index); + extern SINTABLE(16); extern SINTABLE(32); extern SINTABLE(64); diff --git a/libavcodec/fft.c b/libavcodec/fft.c index 958913b62c..b46e72a6d8 100644 --- a/libavcodec/fft.c +++ b/libavcodec/fft.c @@ -61,6 +61,20 @@ static int split_radix_permutation(int i, int n, int inverse) else return split_radix_permutation(i, m, inverse)*4 - 1; } +av_cold void ff_init_ff_cos_tabs(int index) +{ +#if !CONFIG_HARDCODED_TABLES + int i; + int m = 1<split_radix) { -#if !CONFIG_HARDCODED_TABLES for(j=4; j<=nbits; j++) { - int m = 1<revtab[-split_radix_permutation(i, n, s->inverse) & (n-1)] = i; s->tmp_buf = av_malloc(n * sizeof(FFTComplex)); diff --git a/libavcodec/rdft.c b/libavcodec/rdft.c index 46dd6dac3a..d6f82a7c7e 100644 --- a/libavcodec/rdft.c +++ b/libavcodec/rdft.c @@ -64,6 +64,7 @@ av_cold int ff_rdft_init(RDFTContext *s, int nbits, enum RDFTransformType trans) if (ff_fft_init(&s->fft, nbits-1, trans == IRDFT || trans == RIDFT) < 0) return -1; + ff_init_ff_cos_tabs(nbits); s->tcos = ff_cos_tabs[nbits]; s->tsin = ff_sin_tabs[nbits]+(trans == RDFT || trans == IRIDFT)*(n>>2); #if !CONFIG_HARDCODED_TABLES -- cgit v1.2.3