Home
last modified time | relevance | path

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

/external/opencore/codecs_v2/video/m4v_h263/dec/src/
Ddatapart_decode.cpp147 int MBtype, MCBPC, CBPY; in DecodeDataPart_I_VideoPacket() local
244 CBPY = PV_VlcDecCBPY(stream, MBtype & INTRA_MASK); /* MODE_INTRA || MODE_INTRA_Q */ in DecodeDataPart_I_VideoPacket()
245 if (CBPY < 0) in DecodeDataPart_I_VideoPacket()
255 video->headerInfo.CBP[mbnum] |= (uint8)(CBPY << 2); in DecodeDataPart_I_VideoPacket()
312 int MBtype, CBPY; in DecodeDataPart_P_VideoPacket() local
431 CBPY = PV_VlcDecCBPY(stream, intra_MB); in DecodeDataPart_P_VideoPacket()
432 if (CBPY < 0) in DecodeDataPart_P_VideoPacket()
442 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.cpp357 int CBPY, CBPC; in GetMBheader() local
456 CBPY = PV_VlcDecCBPY(stream, MBtype & INTRA_MASK); /* INTRA || INTRA_Q */ in GetMBheader()
457 if (CBPY < 0) in GetMBheader()
463 video->headerInfo.CBP[mbnum] = (uint8)(CBPY << 2 | (CBPC & 3)); in GetMBheader()