Searched refs:poc (Results 1 – 11 of 11) sorted by relevance
43 int poc; in displayingOrder2EncodingOrder() local45 poc = displaying_order % (intracnt * idrcnt + 1); in displayingOrder2EncodingOrder()47 poc = displaying_order; in displayingOrder2EncodingOrder()49 if (poc == 0) //IDR in displayingOrder2EncodingOrder()51 else if ((poc % (bframes + 1)) == 0) //I or P in displayingOrder2EncodingOrder()
647 if (pInfo->img.framepoc >= active_fs->frame.poc) in h264_dpb_update_ref_lists()650 list_sort_number[list0idx] = active_fs->frame.poc; in h264_dpb_update_ref_lists()682 if (pInfo->img.framepoc < active_fs->frame.poc) in h264_dpb_update_ref_lists()685 list_sort_number[list0idx-list0idx_1] = active_fs->frame.poc; in h264_dpb_update_ref_lists()751 if (pInfo->img.ThisPOC >= active_fs->frame.poc) { in h264_dpb_update_ref_lists()753 list_sort_number[list0idx] = active_fs->frame.poc; in h264_dpb_update_ref_lists()781 if (pInfo->img.ThisPOC < active_fs->frame.poc) { in h264_dpb_update_ref_lists()783 list_sort_number[list0idx-list0idx_1] = active_fs->frame.poc; in h264_dpb_update_ref_lists()1295 int32_t poc; in h264_dpb_RP_check_list()1310 h264_dpb_get_smallest_poc(p_dpb, &poc, &idx_pos); in h264_dpb_RP_check_list()[all …]
453 wi.data.data_payload[0] = pInfo->dpb.fs[fs_id].top_field.poc; in h264_parse_emit_start_new_frame()454 wi.data.data_payload[1] = pInfo->dpb.fs[fs_id].bottom_field.poc; in h264_parse_emit_start_new_frame()459 wi.data.data_payload[0] = pInfo->dpb.fs[fs_id].top_field.poc; in h264_parse_emit_start_new_frame()466 wi.data.data_payload[1] = pInfo->dpb.fs[fs_id].bottom_field.poc; in h264_parse_emit_start_new_frame()
1159 wi.data.data_payload[0] = pInfo->dpb.fs[fs_id].top_field.poc; in h264_parse_emit_start_new_frame()1160 wi.data.data_payload[1] = pInfo->dpb.fs[fs_id].bottom_field.poc; in h264_parse_emit_start_new_frame()1165 wi.data.data_payload[0] = pInfo->dpb.fs[fs_id].top_field.poc; in h264_parse_emit_start_new_frame()1172 wi.data.data_payload[1] = pInfo->dpb.fs[fs_id].bottom_field.poc; in h264_parse_emit_start_new_frame()
330 int32_t poc = getPOC(&(picParam->CurrPic)); in decodeSlice() local331 if (poc < mAcquiredBuffer->pictureOrder) { in decodeSlice()332 mAcquiredBuffer->pictureOrder = poc; in decodeSlice()480 dpb->poc = getPOC(ref); in updateDPB()484 …ETRACE("Reference frame %d is missing for current frame %d", dpb->poc, getPOC(&(picParam->CurrPic)… in updateDPB()488 if (dpb->poc == getPOC(&(picParam->CurrPic))) { in updateDPB()514 dpb->poc = getPOC(&(picParam->CurrPic)); in updateDPB()609 int32_t poc = getPOC(&(picParam->CurrPic)); in removeReferenceFromDPB() local611 if (poc == dpb->poc) { in removeReferenceFromDPB()612 dpb->poc = (int32_t)POC_DEFAULT; in removeReferenceFromDPB()[all …]
62 int32_t poc; // Picture Order Count member
453 int32_t poc = MAXIMUM_POC;471 if (p->pictureOrder < poc) {473 poc = p->pictureOrder;506 int32_t poc = MAXIMUM_POC; in findOutputByPoc() local520 if (p->pictureOrder < poc && p->pictureOrder >= mNextOutputPOC) { in findOutputByPoc()522 poc = p->pictureOrder; in findOutputByPoc()526 if (poc == mNextOutputPOC || count == mOutputWindowSize) { in findOutputByPoc()538 poc = MAXIMUM_POC; in findOutputByPoc()
258 pic->TopFieldOrderCnt = store->frame.poc; in vbp_set_VAPicture_h264()259 pic->BottomFieldOrderCnt = store->frame.poc; in vbp_set_VAPicture_h264()270 pic->TopFieldOrderCnt = store->top_field.poc; in vbp_set_VAPicture_h264()271 pic->BottomFieldOrderCnt = store->bottom_field.poc; in vbp_set_VAPicture_h264()276 pic->TopFieldOrderCnt = store->top_field.poc; in vbp_set_VAPicture_h264()277 pic->BottomFieldOrderCnt = store->bottom_field.poc; in vbp_set_VAPicture_h264()467 pic_parms->ReferenceFrames[frame_idx].TopFieldOrderCnt = store->frame.poc; in vbp_set_reference_frames_h264()468 pic_parms->ReferenceFrames[frame_idx].BottomFieldOrderCnt = store->frame.poc; in vbp_set_reference_frames_h264()472 pic_parms->ReferenceFrames[frame_idx].TopFieldOrderCnt = store->top_field.poc; in vbp_set_reference_frames_h264()473 pic_parms->ReferenceFrames[frame_idx].BottomFieldOrderCnt = store->bottom_field.poc; in vbp_set_reference_frames_h264()[all …]
289 uint32_t poc = 0; in ProcessorPreEmptyBuffer() local308 poc = mInputPictureCount % GOP; in ProcessorPreEmptyBuffer()310 if (poc == 0 /*IDR*/) { in ProcessorPreEmptyBuffer()314 }else if ((poc > IpPeriod) && ((poc - IpPeriod) % IntraPeriod == 0))/*I*/{ in ProcessorPreEmptyBuffer()318 … } else if ((poc % IpPeriod == 0) /*P*/ || (buffer->nFlags & OMX_BUFFERFLAG_EOS)/*EOS,always P*/) { in ProcessorPreEmptyBuffer()
67 extern void h264_dpb_get_smallest_poc(h264_DecodedPictureBuffer *p_dpb, int32_t *poc, int32_t *pos);
321 int32_t poc; member