diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-01-07 19:07:42 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-01-07 22:13:07 +0100 |
commit | 3dc99a18d4ae2b9bcc96e00b7f589128717aec64 (patch) | |
tree | 895f83e64aae6cdea16c72998257634424866042 /libavcodec/ac3dec.c | |
parent | 079688b6cbd2944ab84d3539efcde161aa090fac (diff) | |
download | ffmpeg-3dc99a18d4ae2b9bcc96e00b7f589128717aec64.tar.gz |
cosmetics: drop some pointless parentheses
Diffstat (limited to 'libavcodec/ac3dec.c')
-rw-r--r-- | libavcodec/ac3dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index 83cfa0acc3..662ea91d1f 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -223,7 +223,7 @@ static int ac3_parse_header(AC3DecodeContext *s) int i; /* read the rest of the bsi. read twice for dual mono mode. */ - i = !(s->channel_mode); + i = !s->channel_mode; do { skip_bits(gbc, 5); // skip dialog normalization if (get_bits1(gbc)) @@ -792,7 +792,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk) } /* dynamic range */ - i = !(s->channel_mode); + i = !s->channel_mode; do { if (get_bits1(gbc)) { s->dynamic_range[i] = ((dynamic_range_tab[get_bits(gbc, 8)] - 1.0) * |