changeset 2781:899a2ea0907c libavcodec

parenthesing to avoid compiler errors in the future - compared asm outputs, behaviour didnt changed
author alex
date Sat, 02 Jul 2005 19:39:58 +0000
parents 3144a4fc383b
children 67ea9a5a8fff
files h264.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/h264.c	Sat Jul 02 19:28:32 2005 +0000
+++ b/h264.c	Sat Jul 02 19:39:58 2005 +0000
@@ -2964,7 +2964,7 @@
             shift -= 2;
         for(x=0; x<64; x++)
             h->dequant8_coeff[q][x] = dequant8_coeff_init[idx][
-                dequant8_coeff_init_scan[(x>>1)&12 | x&3] ] << shift;
+                dequant8_coeff_init_scan[((x>>1)&12) | (x&3)] ] << shift;
     }
     if(h->sps.transform_bypass){
         for(x=0; x<16; x++)
@@ -4403,7 +4403,7 @@
     int i;
     for(i=0; i<4; i++){
         if(!IS_SUB_8X8(h->sub_mb_type[i])
-           || !h->sps.direct_8x8_inference_flag && IS_DIRECT(h->sub_mb_type[i]))
+           || (!h->sps.direct_8x8_inference_flag && IS_DIRECT(h->sub_mb_type[i])))
             return 0;
     }
     return 1;