diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-09-21 11:50:41 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-09-21 11:51:34 +0200 |
commit | 950ce21d4a7c1f4fbefbb258c852ba05bf6177de (patch) | |
tree | eb29280ef2924e8387389f0dc62ea08842e8dfab /libavcodec | |
parent | 28dce3cdbc3330629660f0da352b14daf48d9379 (diff) | |
parent | 103391ca90b2f7c56ae756d76c76f7c3dfa28dd4 (diff) | |
download | ffmpeg-950ce21d4a7c1f4fbefbb258c852ba05bf6177de.tar.gz |
Merge commit '103391ca90b2f7c56ae756d76c76f7c3dfa28dd4'
* commit '103391ca90b2f7c56ae756d76c76f7c3dfa28dd4':
dca: Remove some commented-out cruft
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dcadec.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/dcadec.c b/libavcodec/dcadec.c index 25a998f3a2..877451046c 100644 --- a/libavcodec/dcadec.c +++ b/libavcodec/dcadec.c @@ -1416,12 +1416,10 @@ static int dca_filter_channels(DCAContext *s, int block_index) /* 32 subbands QMF */ for (k = 0; k < s->prim_channels; k++) { -/* static float pcm_to_double[8] = { 32768.0, 32768.0, 524288.0, 524288.0, - 0, 8388608.0, 8388608.0 };*/ if (s->channel_order_tab[k] >= 0) qmf_32_subbands(s, k, subband_samples[k], s->samples_chanptr[s->channel_order_tab[k]], - M_SQRT1_2 / 32768.0 /* pcm_to_double[s->source_pcm_res] */); + M_SQRT1_2 / 32768.0); } /* Generate LFE samples for this subsubframe FIXME!!! */ |