On 17 Jan 2014, at 16:37, Justin Ruggles <[email protected]> wrote:
> On 01/17/2014 10:20 AM, Tim Walker wrote:
>> ---
>> libavcodec/eac3dec.c | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/libavcodec/eac3dec.c b/libavcodec/eac3dec.c
>> index 95ee33f..9ca9a3c 100644
>> --- a/libavcodec/eac3dec.c
>> +++ b/libavcodec/eac3dec.c
>> @@ -349,12 +349,12 @@ int ff_eac3_parse_header(AC3DecodeContext *s)
>> if (s->channel_mode & 1) {
>> /* if three front channels exist */
>> 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 a surround channel exists */
>> 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);
>> }
>> }
>>
>
> LGTM
>
> -Justin
I'll push the patchset tomorrow or the day after. Any objections?
Tim
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel