diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-22 12:10:53 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-22 12:10:59 +0200 |
commit | 366e415836c52cce71b2f0d11fd04eea0a590c97 (patch) | |
tree | c3a1f4d86b172e6c26580115d410e2147733ef90 /libavcodec/dcadsp.h | |
parent | c30eb74d182063c85a895c6fd3c9d47b93370bb0 (diff) | |
parent | 800ffab48a7844dd5dc0a33b8f6b8e5ed718cf2e (diff) | |
download | ffmpeg-366e415836c52cce71b2f0d11fd04eea0a590c97.tar.gz |
Merge commit '800ffab48a7844dd5dc0a33b8f6b8e5ed718cf2e'
* commit '800ffab48a7844dd5dc0a33b8f6b8e5ed718cf2e':
dcadsp: Add a new method, qmf_32_subbands
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dcadsp.h')
-rw-r--r-- | libavcodec/dcadsp.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavcodec/dcadsp.h b/libavcodec/dcadsp.h index bb157f7650..d86c1f32a6 100644 --- a/libavcodec/dcadsp.h +++ b/libavcodec/dcadsp.h @@ -19,9 +19,18 @@ #ifndef AVCODEC_DCADSP_H #define AVCODEC_DCADSP_H +#include "avfft.h" +#include "synth_filter.h" + typedef struct DCADSPContext { void (*lfe_fir)(float *out, const float *in, const float *coefs, int decifactor, float scale); + void (*qmf_32_subbands)(float samples_in[32][8], int sb_act, + SynthFilterContext *synth, FFTContext *imdct, + float synth_buf_ptr[512], + int *synth_buf_offset, float synth_buf2[32], + const float window[512], float *samples_out, + float raXin[32], float scale); } DCADSPContext; void ff_dcadsp_init(DCADSPContext *s); |