summaryrefslogtreecommitdiff
path: root/libavcodec/vc1dec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-08-15 22:13:08 +0200
committerDiego Biurrun <diego@biurrun.de>2014-08-19 06:22:07 -0700
commitd456baafb68cd80c0f537f1d843076e4dd853558 (patch)
tree34bb6ed3baf0ef8c3cee6d3f8cb8fe4196e7ad71 /libavcodec/vc1dec.c
parent8bc52dbd9dffb1b2fa4a6aeed2d298d036b619b2 (diff)
vc1: Add missing parentheses to conditions in vc1_decode_b_mb_intfr()
Diffstat (limited to 'libavcodec/vc1dec.c')
-rw-r--r--libavcodec/vc1dec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c
index f0ea47134b..8ad4f0f7de 100644
--- a/libavcodec/vc1dec.c
+++ b/libavcodec/vc1dec.c
@@ -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);
}
}