Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Ddatapart_decode.cpp146 int MBtype, MCBPC, CBPY; in DecodeDataPart_I_VideoPacket() local
169 MCBPC = PV_VlcDecMCBPC_com_intra(stream); in DecodeDataPart_I_VideoPacket()
171 if (!VLC_ERROR_DETECTED(MCBPC)) in DecodeDataPart_I_VideoPacket()
173 Mode[mbnum] = (uint8)(MBtype = MBtype_mode[MCBPC & 7]); in DecodeDataPart_I_VideoPacket()
174 video->headerInfo.CBP[mbnum] = (uint8)((MCBPC >> 4) & 3); in DecodeDataPart_I_VideoPacket()
582 int MCBPC; in GetMBheaderDataPart_P() local
600 MCBPC = PV_VlcDecMCBPC_com_inter(stream); in GetMBheaderDataPart_P()
602 if (VLC_ERROR_DETECTED(MCBPC)) in GetMBheaderDataPart_P()
607 Mode[mbnum] = (uint8)MBtype_mode[MCBPC & 7]; in GetMBheaderDataPart_P()
608 video->headerInfo.CBP[mbnum] = (uint8)((MCBPC >> 4) & 3); in GetMBheaderDataPart_P()
Dcombined_decode.cpp358 int MCBPC; in GetMBheader() local
385 MCBPC = PV_VlcDecMCBPC_com_intra(stream); in GetMBheader()
392 MCBPC = PV_VlcDecMCBPC_com_inter(stream); in GetMBheader()
396 MCBPC = PV_VlcDecMCBPC_com_inter_H263(stream); in GetMBheader()
399 MCBPC = PV_VlcDecMCBPC_com_inter(stream); in GetMBheader()
403 if (VLC_ERROR_DETECTED(MCBPC)) in GetMBheader()
408 Mode[mbnum] = (uint8)(MBtype = MBtype_mode[MCBPC & 7]); in GetMBheader()
409 CBPC = (MCBPC >> 4) & 3; in GetMBheader()