diff options
author | Ben Avison <bavison@riscosopen.org> | 2013-07-15 18:28:16 +0100 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-07-22 10:15:42 +0300 |
commit | 800ffab48a7844dd5dc0a33b8f6b8e5ed718cf2e (patch) | |
tree | c7c9d444d9c22153321ba3ec840fd5b48a48214b /libavcodec/dcadec.c | |
parent | 8b9eba664edaddf9a304d3acbf0388b5c520781d (diff) | |
download | ffmpeg-800ffab48a7844dd5dc0a33b8f6b8e5ed718cf2e.tar.gz |
dcadsp: Add a new method, qmf_32_subbands
This does most of the work formerly carried out by
the static function qmf_32_subbands() in dcadec.c.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/dcadec.c')
-rw-r--r-- | libavcodec/dcadec.c | 26 |
1 files changed, 5 insertions, 21 deletions
diff --git a/libavcodec/dcadec.c b/libavcodec/dcadec.c index b53f46b74c..209bca34ff 100644 --- a/libavcodec/dcadec.c +++ b/libavcodec/dcadec.c @@ -946,10 +946,8 @@ static void qmf_32_subbands(DCAContext *s, int chans, float scale) { const float *prCoeff; - int i; int sb_act = s->subband_activity[chans]; - int subindex; scale *= sqrt(1 / 8.0); @@ -959,25 +957,11 @@ static void qmf_32_subbands(DCAContext *s, int chans, else /* Perfect reconstruction */ prCoeff = fir_32bands_perfect; - for (i = sb_act; i < 32; i++) - s->raXin[i] = 0.0; - - /* Reconstructed channel sample index */ - for (subindex = 0; subindex < 8; subindex++) { - /* Load in one sample from each subband and clear inactive subbands */ - for (i = 0; i < sb_act; i++) { - unsigned sign = (i - 1) & 2; - uint32_t v = AV_RN32A(&samples_in[i][subindex]) ^ sign << 30; - AV_WN32A(&s->raXin[i], v); - } - - s->synth.synth_filter_float(&s->imdct, - s->subband_fir_hist[chans], - &s->hist_index[chans], - s->subband_fir_noidea[chans], prCoeff, - samples_out, s->raXin, scale); - samples_out += 32; - } + s->dcadsp.qmf_32_subbands(samples_in, sb_act, &s->synth, &s->imdct, + s->subband_fir_hist[chans], + &s->hist_index[chans], + s->subband_fir_noidea[chans], prCoeff, + samples_out, s->raXin, scale); } static void lfe_interpolation_fir(DCAContext *s, int decimation_select, |