diff h264.c @ 7339:7d5cc12d8fe2 libavcodec

Remove superfluous ().
author michael
date Mon, 21 Jul 2008 18:26:11 +0000
parents b088035801d5
children ef40221c1452
line wrap: on
line diff
--- a/h264.c	Mon Jul 21 18:24:45 2008 +0000
+++ b/h264.c	Mon Jul 21 18:26:11 2008 +0000
@@ -4147,7 +4147,7 @@
     if(decode_ref_pic_list_reordering(h) < 0)
         return -1;
 
-    if(   (h->pps.weighted_pred          && (h->slice_type_nos == FF_P_TYPE ))
+    if(   (h->pps.weighted_pred          && h->slice_type_nos == FF_P_TYPE )
        || (h->pps.weighted_bipred_idc==1 && h->slice_type==FF_B_TYPE ) )
         pred_weight_table(h);
     else if(h->pps.weighted_bipred_idc==2 && h->slice_type==FF_B_TYPE)