[FFmpeg-soc] [soc]: r1700 - eac3/ac3dec.c

jbr subversion at mplayerhq.hu
Sun Dec 30 04:11:17 CET 2007


Author: jbr
Date: Sun Dec 30 04:11:17 2007
New Revision: 1700

Log:
remove unused context variable

Modified:
   eac3/ac3dec.c

Modified: eac3/ac3dec.c
==============================================================================
--- eac3/ac3dec.c	(original)
+++ eac3/ac3dec.c	Sun Dec 30 04:11:17 2007
@@ -114,7 +114,6 @@ const uint8_t ff_ac3_default_coeffs[8][5
 
 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
@@ -324,7 +323,6 @@ static int ac3_parse_header(AC3DecodeCon
     ctx->channel_mode                 = hdr.channel_mode;
     center_mix_level                  = ff_ac3_mix_levels[center_levels[hdr.center_mix_level]];
     surround_mix_level                = ff_ac3_mix_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;



More information about the FFmpeg-soc mailing list