diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-09-20 00:21:12 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-09-20 13:49:52 +0200 |
commit | 103391ca90b2f7c56ae756d76c76f7c3dfa28dd4 (patch) | |
tree | 1f02c3d01f0a9f8dc114b7d7ec524861c3b36065 | |
parent | 2bb2c2bd75e5f4b28a945511cda77e0a1a44c758 (diff) | |
download | ffmpeg-103391ca90b2f7c56ae756d76c76f7c3dfa28dd4.tar.gz |
dca: Remove some commented-out cruft
-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 f0958249bf..619713eae2 100644 --- a/libavcodec/dcadec.c +++ b/libavcodec/dcadec.c @@ -1245,12 +1245,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!!! */ |