Mercurial > libavcodec.hg
changeset 6088:2b84971fb4f1 libavcodec
remove unused context variable
author | jbr |
---|---|
date | Sun, 30 Dec 2007 03:10:18 +0000 |
parents | 34abda474ff7 |
children | 12a77958941f |
files | ac3dec.c |
diffstat | 1 files changed, 0 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ac3dec.c Sat Dec 29 20:49:03 2007 +0000 +++ b/ac3dec.c Sun Dec 30 03:10:18 2007 +0000 @@ -126,7 +126,6 @@ typedef struct { int channel_mode; ///< channel mode (acmod) - int dolby_surround_mode; ///< dolby surround mode int block_switch[AC3_MAX_CHANNELS]; ///< block switch flags int dither_flag[AC3_MAX_CHANNELS]; ///< dither flags int dither_all; ///< true if all channels are dithered @@ -336,7 +335,6 @@ ctx->channel_mode = hdr.channel_mode; center_mix_level = gain_levels[center_levels[hdr.center_mix_level]]; surround_mix_level = gain_levels[surround_levels[hdr.surround_mix_level]]; - ctx->dolby_surround_mode = hdr.dolby_surround_mode; ctx->lfe_on = hdr.lfe_on; ctx->bit_alloc_params.sr_shift = hdr.sr_shift; ctx->sampling_rate = hdr.sample_rate;