Searched refs:CBPY (Results 1 – 3 of 3) sorted by relevance
147 int MBtype, MCBPC, CBPY; in DecodeDataPart_I_VideoPacket() local244 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() local431 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()
592 int CBPY = 0; in PV_VlcDecCBPY() local605 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()
357 int CBPY, CBPC; in GetMBheader() local456 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()