Searched refs:CBP (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dmb_motion_comp.cpp121 int CBP
259 if ((CBP >> 5)&1)
295 if ((CBP >> 4)&1)
331 if ((CBP >> 3)&1)
368 if ((CBP >> 2)&1)
476 if ((CBP >> 1)&1)
491 if (CBP&1)
512 if ((CBP >> 1)&1)
527 if (CBP&1)
H A Dcombined_decode.cpp462 video->headerInfo.CBP[mbnum] = (uint8)(CBPY << 2 | (CBPC & 3));
534 uint CBP = video->headerInfo.CBP[mbnum]; local
665 MBMotionComp(video, CBP);
672 if (CBP & (1 << (5 - comp)))
702 if (CBP & 2)
726 if (CBP & 1)
754 if (CBP & (1 << (5 - comp)))
780 if (CBP & 2)
804 if (CBP
[all...]
H A Ddatapart_decode.cpp174 video->headerInfo.CBP[mbnum] = (uint8)((MCBPC >> 4) & 3);
254 video->headerInfo.CBP[mbnum] |= (uint8)(CBPY << 2);
441 video->headerInfo.CBP[mbnum] |= (uint8)(CBPY << 2);
608 video->headerInfo.CBP[mbnum] = (uint8)((MCBPC >> 4) & 3);
628 uint CBP = video->headerInfo.CBP[mbnum]; local
714 MBMotionComp(video, CBP);
723 if (CBP & (1 << (5 - comp)))
748 if (CBP & 2)
768 if (CBP
[all...]
H A Dvlc_dequant.cpp58 uint CBP = video->headerInfo.CBP[mbnum]; local
110 if (CBP & (1 << (5 - comp)))
509 uint CBP = video->headerInfo.CBP[mbnum]; local
555 if (CBP & (1 << (5 - comp)))
811 uint CBP = video->headerInfo.CBP[mbnum]; local
858 if ((CBP & (1 << (5 - comp))) == 0)
940 if (CBP
[all...]
H A Dconceal.cpp65 video->headerInfo.CBP[mbnum] = 0;
H A Dmp4lib_int.h151 uint8 *CBP; /* MCBPC/CBPY stuff */ member in struct:tagHeaderInfoDecVideo
H A Dmp4dec_lib.h126 void MBMotionComp(VideoDecData *video, int CBP);
H A Dpvdec_api.cpp376 video->headerInfo.CBP = (uint8 *)(IMEM_headerInfo_CBP);
377 if (video->headerInfo.CBP == NULL) status = PV_FALSE;
417 video->headerInfo.CBP = (uint8 *) oscl_malloc(nTotalMB);
418 if (video->headerInfo.CBP == NULL) status = PV_FALSE;
575 video->headerInfo.CBP = NULL;
640 if (video->headerInfo.CBP) oscl_free(video->headerInfo.CBP);
/frameworks/base/media/libstagefright/codecs/avc/dec/src/
H A Dslice.cpp166 currMB->CBP = 0;
216 if (currMB->CBP > 0 || currMB->mbMode == AVC_I16)
255 currMB->CBP = 0x3F;
464 mblock->CBP = (((mb_type - 13) >> 2) << 4) + 0x0F;
468 mblock->CBP = ((mb_type - 1) >> 2) << 4;
759 currMB->CBP = 0;
H A Dresidual.cpp232 if (currMB->CBP&(1 << mbPartIdx))
275 if (currMB->CBP & (3 << 4)) /* chroma DC residual present */
302 if (currMB->CBP & (2 << 4))
H A Dvlc.cpp265 currMB->CBP = coded_block_pattern;
/frameworks/base/media/libstagefright/codecs/avc/common/include/
H A Davcint_common.h585 uint CBP; /* CodeBlockPattern */ member in struct:tagMacroblock

Completed in 361 milliseconds