]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/vc1dec: use logical operation instead of bitwise for twomv
authorMichael Niedermayer <michaelni@gmx.at>
Sat, 19 Oct 2013 22:00:36 +0000 (00:00 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 23 Oct 2013 12:32:04 +0000 (14:32 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/vc1dec.c

index 6749c2bee5202cf75e7d73e641c90ced232d9933..bfbbc6aed7cf5c4419e8f984afb81157f31c28b7 100644 (file)
@@ -4550,9 +4550,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);
                 }
             }