diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index e5870faa29..6a60fbabaf 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -345,7 +345,8 @@ static int decode_slice(MpegEncContext *s) } if (s->workaround_bugs & FF_BUG_AUTODETECT) { - if (s->padding_bug_score > -2 && !s->data_partitioning) + if ( + (s->padding_bug_score > -2 && !s->data_partitioning)) s->workaround_bugs |= FF_BUG_NO_PADDING; else s->workaround_bugs &= ~FF_BUG_NO_PADDING;