]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/synth_filter.h
Move AVMediaType from libavcodec to libavutil.
[ffmpeg] / libavcodec / synth_filter.h
index 8f1a8b4336452f386cadd223c4ce67e5d34d9931..701394ca0adb1c448d62276be5d08d0ae2e57e30 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-#include "dsputil.h"
+#ifndef AVCODEC_SYNTH_FILTER_H
+#define AVCODEC_SYNTH_FILTER_H
+
+#include "fft.h"
 
 void ff_synth_filter_float(FFTContext *imdct,
                            float *synth_buf_ptr, int *synth_buf_offset,
                            float synth_buf2[32], const float window[512],
                            float out[32], const float in[32], float scale, float bias);
 
+#endif /* AVCODEC_SYNTH_FILTER_H */