comparison synth_filter.h @ 11412:811467079ec9 libavcodec

Add lots of missing includes
author mru
date Mon, 08 Mar 2010 18:43:52 +0000
parents 473d52076994
children 18f17f44de37
comparison
equal deleted inserted replaced
11411:56ec6b45980f 11412:811467079ec9
19 */ 19 */
20 20
21 #ifndef AVCODEC_SYNTH_FILTER_H 21 #ifndef AVCODEC_SYNTH_FILTER_H
22 #define AVCODEC_SYNTH_FILTER_H 22 #define AVCODEC_SYNTH_FILTER_H
23 23
24 #include "dsputil.h" 24 #include "fft.h"
25 25
26 void ff_synth_filter_float(FFTContext *imdct, 26 void ff_synth_filter_float(FFTContext *imdct,
27 float *synth_buf_ptr, int *synth_buf_offset, 27 float *synth_buf_ptr, int *synth_buf_offset,
28 float synth_buf2[32], const float window[512], 28 float synth_buf2[32], const float window[512],
29 float out[32], const float in[32], float scale, float bias); 29 float out[32], const float in[32], float scale, float bias);