diff options
author | Mans Rullgard <mans@mansr.com> | 2011-03-19 15:14:17 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-03-19 19:49:18 +0000 |
commit | 26f548bb59177cfc8c45ff633dd37b60cfd23edf (patch) | |
tree | 1e2f6b7d04f8554c60eb4b562844f1cf21b64b9b /libavcodec/synth_filter.c | |
parent | ec10a9ab461b26b96eff7bbbb8623f42d8ee04ad (diff) | |
download | ffmpeg-26f548bb59177cfc8c45ff633dd37b60cfd23edf.tar.gz |
fft: remove inline wrappers for function pointers
This removes the rather pointless wrappers (one not even inline)
for calling the fft_calc and related function pointers.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/synth_filter.c')
-rw-r--r-- | libavcodec/synth_filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/synth_filter.c b/libavcodec/synth_filter.c index f8e63ca6bc..8e6f1202fe 100644 --- a/libavcodec/synth_filter.c +++ b/libavcodec/synth_filter.c @@ -29,7 +29,7 @@ static void synth_filter_float(FFTContext *imdct, float *synth_buf= synth_buf_ptr + *synth_buf_offset; int i, j; - ff_imdct_half(imdct, synth_buf, in); + imdct->imdct_half(imdct, synth_buf, in); for (i = 0; i < 16; i++){ float a= synth_buf2[i ]; |