Searched defs:CBP (Results 1 - 10 of 10) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Ddatapart_encode.cpp237 UChar CBP; local
363 CBP = video->headerInfo.CBP[mbnum];
421 video->headerInfo.CBP[mbnum] = CBP;
H A Dcombined_encode.cpp289 UChar CBP = 0; local
441 CBP = video->headerInfo.CBP[mbnum];
492 video->headerInfo.CBP[mbnum] = CBP;
H A Dfastcodemb.cpp52 Int sad, k, CBP, mbnum = video->mbnum; local
87 CBP = 0;
138 CBP <<= 1;
197 CBP |= 0;
205 CBP |= (*BlockQuantDequantH263DC)(dataBlock, output, &QuantParam,
233 CBP |= (*BlockQuantDequantH263)(dataBlock, output, &QuantParam,
248 video->headerInfo.CBP[mbnum] = CBP; /* 5/18/2001 */
281 Int sad, k, CBP, mbnum = video->mbnum; local
318 CBP
[all...]
H A Dfastquant.cpp125 return CBP for this block
445 Int CBP = 0; local
465 return CBP;//rcoeff[0] = 0; not needed since CBP will be zero
489 CBP = 1;
491 return CBP;
552 Int CBP = 0; local
651 CBP = 1; /* check CBP before mismatch control, 7/5/01 */
654 if (CBP)
681 Int CBP = 0; local
856 Int CBP = 0; local
[all...]
H A Dvlc_encode.cpp892 UChar CBP; local
901 /* DC and AC Prediction, 5/28/01, compute CBP, intraDC_decision*/
904 /* CBP, Run, Level, and Sign */
906 CBP = video->headerInfo.CBP[mbnum];
925 PutMCBPC_Intra(CBP, Mode, bs1); /* MCBPC */
951 PutCBPY(CBP >> 2, (Char)(1), bs2); /* cbpy */
958 if (CBP&(1 << (5 - i)))
982 UChar CBP; local
993 /* DC and AC Prediction, 5/28/01, compute CBP, intraDC_decisio
1138 UChar CBP = video->headerInfo.CBP[video->mbnum]; local
1256 UChar CBP ; local
1788 Int CBP = video->headerInfo.CBP[video->mbnum]; local
[all...]
H A Dmp4lib_int.h148 UChar *CBP; /* MCBPC/CBPY stuff */ member in struct:tagHeaderInfoDecVideo
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
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 Dmp4lib_int.h151 uint8 *CBP; /* MCBPC/CBPY stuff */ member in struct:tagHeaderInfoDecVideo

Completed in 403 milliseconds