Lines Matching defs:u4_temp
199 UWORD32 u4_temp;
209 u4_temp = ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
210 if(u4_temp & MASK_ERR_PIC_SET_ID)
213 *ps_pps = ps_dec->ps_pps[u4_temp];
214 ps_pps->u1_pic_parameter_set_id = (WORD8)u4_temp;
226 u4_temp = ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
227 if(u4_temp & MASK_ERR_SEQ_SET_ID)
229 COPYTHECONTEXT("PPS: seq_parameter_set_id",u4_temp);
230 ps_sps = &ps_dec->ps_sps[u4_temp];
245 u4_temp = ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf) + 1;
246 if(u4_temp != 1)
252 ps_pps->u1_num_slice_groups = u4_temp;
258 u4_temp = 1 + ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
259 if(u4_temp > H264_MAX_REF_IDX)
261 ps_pps->u1_num_ref_idx_lx_active[0] = u4_temp;
265 u4_temp = 1 + ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
266 if(u4_temp > H264_MAX_REF_IDX)
268 ps_pps->u1_num_ref_idx_lx_active[1] = u4_temp;
486 UWORD32 u4_temp;
557 u4_temp = ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
558 if(u4_temp & MASK_ERR_SEQ_SET_ID)
560 u1_seq_parameter_set_id = u4_temp;
678 u4_temp = 4 + ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
679 if(u4_temp > MAX_BITS_IN_FRAME_NUM)
683 ps_seq->u1_bits_in_frm_num = u4_temp;
692 u4_temp = ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
694 if(u4_temp > MAX_PIC_ORDER_CNT_TYPE)
698 ps_seq->u1_pic_order_cnt_type = u4_temp;
704 u4_temp = 4 + ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
705 if(u4_temp > MAX_BITS_IN_POC_LSB)
709 ps_seq->u1_log2_max_pic_order_cnt_lsb_minus = u4_temp;
710 ps_seq->i4_max_pic_order_cntLsb = (1 << u4_temp);
711 COPYTHECONTEXT("SPS: log2_max_pic_order_cnt_lsb_minus4",(u4_temp - 4));
730 u4_temp = ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
731 if(u4_temp > 255)
733 ps_seq->u1_num_ref_frames_in_pic_order_cnt_cycle = u4_temp;
746 u4_temp = ih264d_uev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
748 if((u4_temp > H264_MAX_REF_PICS))
754 if((3 == ps_dec->i4_header_decoded) && (ps_seq->u1_num_ref_frames != u4_temp))
760 ps_seq->u1_num_ref_frames = u4_temp;