HomeSort by relevance Sort by last modified time
    Searched defs:poc (Results 1 - 10 of 10) sorted by null

  /hardware/intel/img/psb_video/src/
tng_slotorder.c 43 int poc; local
45 poc = displaying_order % (intracnt * idrcnt + 1);
47 poc = displaying_order;
49 if (poc == 0) //IDR
51 else if ((poc % (bframes + 1)) == 0) //I or P
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderAVC.h 62 int32_t poc; // Picture Order Count member in struct:VideoDecoderAVC::DecodedPictureBuffer
VideoDecoderAVC.cpp 139 VTRACE("%d: decoding frame %.2f, poc top = %d, poc bottom = %d, flags = %d, reference = %d",
316 int32_t poc = getPOC(&(picParam->CurrPic)); local
317 if (poc < mAcquiredBuffer->pictureOrder) {
318 mAcquiredBuffer->pictureOrder = poc;
466 dpb->poc = getPOC(ref);
467 // looking for the latest ref frame in the DPB with specified POC, in case frames have same POC
470 ETRACE("Reference frame %d is missing for current frame %d", dpb->poc, getPOC(&(picParam->CurrPic)));
474 if (dpb->poc == getPOC(&(picParam->CurrPic)))
595 int32_t poc = getPOC(&(picParam->CurrPic)); local
    [all...]
VideoDecoderBase.cpp 329 //VTRACE("Output POC %d for display (pts = %.2f)", output->pictureOrder, output->renderBuffer.timeStamp/1E6);
395 // output by picture order count (POC)
397 // if there is IDR frame (POC == 0), all the frames before IDR must be output;
398 // Otherwise, if draining flag is set or list is full, frame with the least POC is output;
427 int32_t poc = MAXIMUM_POC;
431 // output picture with the least POC before IDR
440 // POC of the output candidate must not be less than mNextOutputPOC
445 if (p->pictureOrder < poc) {
446 // update the least POC.
447 poc = p->pictureOrder
480 int32_t poc = MAXIMUM_POC; local
    [all...]
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
pi.h 97 opj_poc_t poc; member in struct:opj_pi_iterator
t2.c 215 OPJ_UINT32 poc; local
239 for (poc = 0; poc < pocno ; ++poc) {
243 opj_pi_create_encode(l_pi, l_cp,p_tile_no,poc,l_tp_num,p_tp_pos,p_t2_mode);
300 info_PK->start_pos = ((l_cp->m_specific_param.m_enc.m_tp_on | l_tcp->POC)&& info_PK->start_pos) ? info_PK->start_pos : info_TL->packet[cstr_info->packno - 1].end_pos + 1;
391 l_current_pi->poc.prg1, l_current_pi->compno, l_current_pi->resno, l_current_pi->precno, l_current_pi->layno );
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_storage.h 117 pocStorage_t poc[1]; member in struct:__anon39090
  /hardware/intel/common/omx-components/videocodec/
OMXVideoEncoderAVC.cpp 289 uint32_t poc = 0; local
308 poc = mInputPictureCount % GOP;
310 if (poc == 0 /*IDR*/) {
314 }else if ((poc > IpPeriod) && ((poc - IpPeriod) % IntraPeriod == 0))/*I*/{
318 } else if ((poc % IpPeriod == 0) /*P*/ || (buffer->nFlags & OMX_BUFFERFLAG_EOS)/*EOS,always P*/) {
    [all...]
  /external/libhevc/decoder/
ihevcd_parse_headers.c 493 WORD32 poc; local
515 poc = prev_poc - (value + 1);
516 prev_poc = poc;
517 ps_stref_picset->ai2_delta_poc[i] = poc;
529 poc = prev_poc + (value + 1);
530 prev_poc = poc;
531 ps_stref_picset->ai2_delta_poc[i] = poc;
    [all...]
  /external/chromium_org/content/common/gpu/media/
vaapi_h264_decoder.cc 21 DecodeSurface(int poc,
24 DecodeSurface(int poc, const scoped_refptr<DecodeSurface>& dec_surface);
27 int poc() { function in class:content::VaapiH264Decoder::DecodeSurface
46 int poc,
49 : poc_(poc),
100 int poc = it->second->poc(); local
104 UnassignSurfaceFromPoC(poc);
180 VaapiH264Decoder::DecodeSurface* VaapiH264Decoder::DecodeSurfaceByPoC(int poc) {
181 DecSurfacesInUse::iterator iter = decode_surfaces_in_use_.find(poc);
1346 int poc = (*output_candidate)->pic_order_cnt; local
    [all...]

Completed in 2299 milliseconds