Searched refs:CBPY (Results 1 – 3 of 3) sorted by relevance
146 int MBtype, MCBPC, CBPY; in DecodeDataPart_I_VideoPacket() local243 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() local430 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()
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()
356 int CBPY, CBPC; in GetMBheader() local455 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()