Home
last modified time | relevance | path

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

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