Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
vc1: Add missing parentheses to conditions in vc1_decode_b_mb_intfr()
  • Loading branch information
DonDiego committed Aug 19, 2014
1 parent 8bc52db commit d456baa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libavcodec/vc1dec.c
Expand Up @@ -4570,9 +4570,9 @@ static int vc1_decode_b_mb_intfr(VC1Context *v)
if (mb_has_coeffs)
cbp = 1 + get_vlc2(&v->s.gb, v->cbpcy_vlc->table, VC1_CBPCY_P_VLC_BITS, 2);
if (!direct) {
if (bmvtype == BMV_TYPE_INTERPOLATED & twomv) {
if (bmvtype == (BMV_TYPE_INTERPOLATED & twomv)) {
v->fourmvbp = get_vlc2(gb, v->fourmvbp_vlc->table, VC1_4MV_BLOCK_PATTERN_VLC_BITS, 1);
} else if (bmvtype == BMV_TYPE_INTERPOLATED | twomv) {
} else if (bmvtype == (BMV_TYPE_INTERPOLATED | twomv)) {
v->twomvbp = get_vlc2(gb, v->twomvbp_vlc->table, VC1_2MV_BLOCK_PATTERN_VLC_BITS, 1);
}
}
Expand Down

0 comments on commit d456baa

Please sign in to comment.