Home
last modified time | relevance | path

Searched refs:MCBPC (Results 1 – 2 of 2) sorted by relevance

/external/opencore/codecs_v2/video/m4v_h263/dec/src/
Ddatapart_decode.cpp147 int MBtype, MCBPC, CBPY; in DecodeDataPart_I_VideoPacket() local
170 MCBPC = PV_VlcDecMCBPC_com_intra(stream); in DecodeDataPart_I_VideoPacket()
172 if (!VLC_ERROR_DETECTED(MCBPC)) in DecodeDataPart_I_VideoPacket()
174 Mode[mbnum] = (uint8)(MBtype = MBtype_mode[MCBPC & 7]); in DecodeDataPart_I_VideoPacket()
175 video->headerInfo.CBP[mbnum] = (uint8)((MCBPC >> 4) & 3); in DecodeDataPart_I_VideoPacket()
583 int MCBPC; in GetMBheaderDataPart_P() local
601 MCBPC = PV_VlcDecMCBPC_com_inter(stream); in GetMBheaderDataPart_P()
603 if (VLC_ERROR_DETECTED(MCBPC)) in GetMBheaderDataPart_P()
608 Mode[mbnum] = (uint8)MBtype_mode[MCBPC & 7]; in GetMBheaderDataPart_P()
609 video->headerInfo.CBP[mbnum] = (uint8)((MCBPC >> 4) & 3); in GetMBheaderDataPart_P()
Dcombined_decode.cpp359 int MCBPC; in GetMBheader() local
386 MCBPC = PV_VlcDecMCBPC_com_intra(stream); in GetMBheader()
393 MCBPC = PV_VlcDecMCBPC_com_inter(stream); in GetMBheader()
397 MCBPC = PV_VlcDecMCBPC_com_inter_H263(stream); in GetMBheader()
400 MCBPC = PV_VlcDecMCBPC_com_inter(stream); in GetMBheader()
404 if (VLC_ERROR_DETECTED(MCBPC)) in GetMBheader()
409 Mode[mbnum] = (uint8)(MBtype = MBtype_mode[MCBPC & 7]); in GetMBheader()
410 CBPC = (MCBPC >> 4) & 3; in GetMBheader()