diff options
author | Alexandra Hájková <alexandra.khirnova@gmail.com> | 2015-12-18 14:54:02 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2015-12-24 13:58:18 +0100 |
commit | 2008f76054906e9ff6bf744800af0e5a5bfe61be (patch) | |
tree | 4981d3e41d9d5b13d904d91da6342ba74020e1b9 /libavcodec/dcadec.c | |
parent | aebf07075f4244caf591a3af71e5872fe314e87b (diff) | |
download | ffmpeg-2008f76054906e9ff6bf744800af0e5a5bfe61be.tar.gz |
dca: remove unused decode_hf function and quant_d tables
They were superseded with their integer equivalents. Rename integer
decode_hf to decode_hf.
Diffstat (limited to 'libavcodec/dcadec.c')
-rw-r--r-- | libavcodec/dcadec.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/dcadec.c b/libavcodec/dcadec.c index 399b1e5d32..a25436cdec 100644 --- a/libavcodec/dcadec.c +++ b/libavcodec/dcadec.c @@ -913,12 +913,12 @@ static int dca_subsubframe(DCAContext *s, int base_channel, int block_index) s->debug_flag |= 0x01; } - s->dcadsp.decode_hf_int(subband_samples, s->dca_chan[k].high_freq_vq, - ff_dca_high_freq_vq, subsubframe * SAMPLES_PER_SUBBAND, - s->dca_chan[k].scale_factor, - s->audio_header.vq_start_subband[k], - s->audio_header.subband_activity[k]); - + s->dcadsp.decode_hf(subband_samples, s->dca_chan[k].high_freq_vq, + ff_dca_high_freq_vq, + subsubframe * SAMPLES_PER_SUBBAND, + s->dca_chan[k].scale_factor, + s->audio_header.vq_start_subband[k], + s->audio_header.subband_activity[k]); } } |