Searched refs:CBPY (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Ddatapart_decode.cpp146 int MBtype, MCBPC, CBPY; local
243 CBPY = PV_VlcDecCBPY(stream, MBtype & INTRA_MASK); /* MODE_INTRA || MODE_INTRA_Q */
244 if (CBPY < 0)
254 video->headerInfo.CBP[mbnum] |= (uint8)(CBPY << 2);
311 int MBtype, CBPY; local
430 CBPY = PV_VlcDecCBPY(stream, intra_MB);
431 if (CBPY < 0)
441 video->headerInfo.CBP[mbnum] |= (uint8)(CBPY << 2);
H A Dvlc_decode.cpp592 int CBPY = 0; local
605 CBPY = 15;
610 CBPY = PV_CBPYtab[code].val;
613 if (intra == 0) CBPY = 15 - CBPY;
614 CBPY = CBPY & 15;
615 return CBPY;
H A Dcombined_decode.cpp356 int CBPY, CBPC; local
455 CBPY = PV_VlcDecCBPY(stream, MBtype & INTRA_MASK); /* INTRA || INTRA_Q */
456 if (CBPY < 0)
462 video->headerInfo.CBP[mbnum] = (uint8)(CBPY << 2 | (CBPC & 3));

Completed in 134 milliseconds