Home
last modified time | relevance | path

Searched refs:poc (Results 1 – 5 of 5) sorted by relevance

/hardware/intel/img/psb_video/src/
Dtng_slotorder.c43 int poc; in displayingOrder2EncodingOrder() local
45 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()
/hardware/intel/common/libmix/videodecoder/
DVideoDecoderAVC.cpp316 int32_t poc = getPOC(&(picParam->CurrPic)); in decodeSlice() local
317 if (poc < mAcquiredBuffer->pictureOrder) { in decodeSlice()
318 mAcquiredBuffer->pictureOrder = poc; in decodeSlice()
466 dpb->poc = getPOC(ref); in updateDPB()
470 …ETRACE("Reference frame %d is missing for current frame %d", dpb->poc, getPOC(&(picParam->CurrPic)… in updateDPB()
474 if (dpb->poc == getPOC(&(picParam->CurrPic))) { in updateDPB()
500 dpb->poc = getPOC(&(picParam->CurrPic)); in updateDPB()
588 int32_t poc = getPOC(&(picParam->CurrPic)); in removeReferenceFromDPB() local
590 if (poc == dpb->poc) { in removeReferenceFromDPB()
591 dpb->poc = (int32_t)POC_DEFAULT; in removeReferenceFromDPB()
[all …]
DVideoDecoderBase.cpp437 int32_t poc = MAXIMUM_POC;
455 if (p->pictureOrder < poc) {
457 poc = p->pictureOrder;
490 int32_t poc = MAXIMUM_POC; in findOutputByPoc() local
504 if (p->pictureOrder < poc && p->pictureOrder >= mNextOutputPOC) { in findOutputByPoc()
506 poc = p->pictureOrder; in findOutputByPoc()
510 if (poc == mNextOutputPOC || count == mOutputWindowSize) { in findOutputByPoc()
522 poc = MAXIMUM_POC; in findOutputByPoc()
DVideoDecoderAVC.h62 int32_t poc; // Picture Order Count member
/hardware/intel/common/omx-components/videocodec/
DOMXVideoEncoderAVC.cpp289 uint32_t poc = 0; in ProcessorPreEmptyBuffer() local
308 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()