X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fsynth_filter.h;h=df3589a8d56bcb162a468687feefadb4e448d1b9;hb=4e5db87174edc4f5f858bbc2b42d45cbe02ef379;hp=e073f427adbbfe0d3aa11bdb9c62d4e96169aa49;hpb=e5b5676c008552e7602789cc80c99887d2b33504;p=ffmpeg diff --git a/libavcodec/synth_filter.h b/libavcodec/synth_filter.h index e073f427adb..df3589a8d56 100644 --- a/libavcodec/synth_filter.h +++ b/libavcodec/synth_filter.h @@ -22,6 +22,7 @@ #define AVCODEC_SYNTH_FILTER_H #include "fft.h" +#include "dcadct.h" typedef struct SynthFilterContext { void (*synth_filter_float)(FFTContext *imdct, @@ -29,6 +30,18 @@ typedef struct SynthFilterContext { float synth_buf2[32], const float window[512], float out[32], const float in[32], float scale); + void (*synth_filter_float_64)(FFTContext *imdct, + float *synth_buf_ptr, int *synth_buf_offset, + float synth_buf2[64], const float window[1024], + float out[64], const float in[64], float scale); + void (*synth_filter_fixed)(DCADCTContext *imdct, + int32_t *synth_buf_ptr, int *synth_buf_offset, + int32_t synth_buf2[32], const int32_t window[512], + int32_t out[32], const int32_t in[32]); + void (*synth_filter_fixed_64)(DCADCTContext *imdct, + int32_t *synth_buf_ptr, int *synth_buf_offset, + int32_t synth_buf2[64], const int32_t window[1024], + int32_t out[64], const int32_t in[64]); } SynthFilterContext; void ff_synth_filter_init(SynthFilterContext *c);