Home
last modified time | relevance | path

Searched refs:MaxPicOrderCntLsb (Results 1 – 2 of 2) sorted by relevance

/hardware/intel/common/libva/test/encode/
Dh264encode.c94 static unsigned int MaxPicOrderCntLsb = (2<<8); variable
1377 ((prevPicOrderCntLsb - pic_order_cnt_lsb) >= (int)(MaxPicOrderCntLsb / 2))) in calc_poc()
1378 PicOrderCntMsb = prevPicOrderCntMsb + MaxPicOrderCntLsb; in calc_poc()
1380 ((pic_order_cnt_lsb - prevPicOrderCntLsb) > (int)(MaxPicOrderCntLsb / 2))) in calc_poc()
1381 PicOrderCntMsb = prevPicOrderCntMsb - MaxPicOrderCntLsb; in calc_poc()
1404 …Pic.TopFieldOrderCnt = calc_poc((current_frame_display - current_IDR_display) % MaxPicOrderCntLsb); in render_picture()
1662 … slice_param.pic_order_cnt_lsb = (current_frame_display - current_IDR_display) % MaxPicOrderCntLsb; in render_slice()
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
Dh264parse_dpb.c3874 int32_t MaxPicOrderCntLsb = (1<<(pInfo->active_SPS.log2_max_pic_order_cnt_lsb_minus4+4)); in h264_hdr_decoding_poc() local
3917 ((pInfo->img.PrevPicOrderCntLsb - pInfo->img.pic_order_cnt_lsb )>=(MaxPicOrderCntLsb>>1)) ) in h264_hdr_decoding_poc()
3919 pInfo->img.CurrPicOrderCntMsb = pInfo->img.PicOrderCntMsb + MaxPicOrderCntLsb; in h264_hdr_decoding_poc()
3921 ((pInfo->img.pic_order_cnt_lsb - pInfo->img.PrevPicOrderCntLsb ) > (MaxPicOrderCntLsb>>1)) ) in h264_hdr_decoding_poc()
3923 pInfo->img.CurrPicOrderCntMsb = pInfo->img.PicOrderCntMsb - MaxPicOrderCntLsb; in h264_hdr_decoding_poc()