From 26f548bb59177cfc8c45ff633dd37b60cfd23edf Mon Sep 17 00:00:00 2001 From: Mans Rullgard Date: Sat, 19 Mar 2011 15:14:17 +0000 Subject: 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 --- libavcodec/synth_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/synth_filter.c') 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 ]; -- cgit v1.2.3