comparison h264.c @ 7339:7d5cc12d8fe2 libavcodec

Remove superfluous ().
author michael
date Mon, 21 Jul 2008 18:26:11 +0000
parents b088035801d5
children ef40221c1452
comparison
equal deleted inserted replaced
7338:b088035801d5 7339:7d5cc12d8fe2
4145 } 4145 }
4146 4146
4147 if(decode_ref_pic_list_reordering(h) < 0) 4147 if(decode_ref_pic_list_reordering(h) < 0)
4148 return -1; 4148 return -1;
4149 4149
4150 if( (h->pps.weighted_pred && (h->slice_type_nos == FF_P_TYPE )) 4150 if( (h->pps.weighted_pred && h->slice_type_nos == FF_P_TYPE )
4151 || (h->pps.weighted_bipred_idc==1 && h->slice_type==FF_B_TYPE ) ) 4151 || (h->pps.weighted_bipred_idc==1 && h->slice_type==FF_B_TYPE ) )
4152 pred_weight_table(h); 4152 pred_weight_table(h);
4153 else if(h->pps.weighted_bipred_idc==2 && h->slice_type==FF_B_TYPE) 4153 else if(h->pps.weighted_bipred_idc==2 && h->slice_type==FF_B_TYPE)
4154 implicit_weight_table(h); 4154 implicit_weight_table(h);
4155 else 4155 else