Browse Source

dca: Remove some commented-out cruft

tags/n2.5
Diego Biurrun 11 years ago
parent
commit
103391ca90
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      libavcodec/dcadec.c

+ 1
- 3
libavcodec/dcadec.c View File

@@ -1245,12 +1245,10 @@ static int dca_filter_channels(DCAContext *s, int block_index)


/* 32 subbands QMF */ /* 32 subbands QMF */
for (k = 0; k < s->prim_channels; k++) { 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) if (s->channel_order_tab[k] >= 0)
qmf_32_subbands(s, k, subband_samples[k], qmf_32_subbands(s, k, subband_samples[k],
s->samples_chanptr[s->channel_order_tab[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!!! */ /* Generate LFE samples for this subsubframe FIXME!!! */


Loading…
Cancel
Save