[FFmpeg-soc] [soc]: r3027 - eac3/eac3dec.c
jbr
subversion at mplayerhq.hu
Tue Aug 5 04:58:57 CEST 2008
Author: jbr
Date: Tue Aug 5 04:58:54 2008
New Revision: 3027
Log:
cosmetics: more coding style consistency
Modified:
eac3/eac3dec.c
Modified: eac3/eac3dec.c
==============================================================================
--- eac3/eac3dec.c (original)
+++ eac3/eac3dec.c Tue Aug 5 04:58:54 2008
@@ -62,7 +62,7 @@ void ff_eac3_get_transform_coeffs_aht_ch
gs = 0;
for (bin = s->start_freq[ch]; bin < s->end_freq[ch]; bin++) {
if (s->bap[ch][bin] > 7 && s->bap[ch][bin] < end_bap) {
- if(gc++ == 2) {
+ if (gc++ == 2) {
int group_gain = get_bits(gbc, 5);
gaq_gain[gs++] = ff_ac3_ungroup_3_in_5_bits_tab[group_gain][0];
gaq_gain[gs++] = ff_ac3_ungroup_3_in_5_bits_tab[group_gain][1];
@@ -191,7 +191,7 @@ static int parse_bsi(AC3DecodeContext *s
} else {
//default channel map based on acmod and lfeon
s->channel_map = ff_eac3_default_chmap[s->channel_mode];
- if(s->lfe_on)
+ if (s->lfe_on)
s->channel_map |= AC3_CHMAP_LFE;
}
}
More information about the FFmpeg-soc
mailing list