Commit fde2afd9 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge remote-tracking branch 'qatar/master'

* qatar/master:
  eac3: cosmetics, re-indent.
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 10f1ee2f 0d43b114
...@@ -349,12 +349,12 @@ int ff_eac3_parse_header(AC3DecodeContext *s) ...@@ -349,12 +349,12 @@ int ff_eac3_parse_header(AC3DecodeContext *s)
if (s->channel_mode & 1) { if (s->channel_mode & 1) {
/* if three front channels exist */ /* if three front channels exist */
s->center_mix_level_ltrt = get_bits(gbc, 3); s->center_mix_level_ltrt = get_bits(gbc, 3);
s->center_mix_level = get_bits(gbc, 3); s->center_mix_level = get_bits(gbc, 3);
} }
if (s->channel_mode & 4) { if (s->channel_mode & 4) {
/* if a surround channel exists */ /* if a surround channel exists */
s->surround_mix_level_ltrt = av_clip(get_bits(gbc, 3), 3, 7); s->surround_mix_level_ltrt = av_clip(get_bits(gbc, 3), 3, 7);
s->surround_mix_level = av_clip(get_bits(gbc, 3), 3, 7); s->surround_mix_level = av_clip(get_bits(gbc, 3), 3, 7);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment