Searched defs:cbp (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_macroblock_layer.c560 /* luma cbp in bits 0-3 */
734 /* luma cbp in bits 0-3 */
885 u32 cbp; local
893 cbp = 15;
895 cbp = 0;
903 cbp += tmp << 4;
905 return(cbp);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvlc_encode.cpp239 PutMCBPC_Intra(Int cbp, Int mode, BitstreamEncVideo *bitstream) argument
244 ind = ((mode_MBtype[mode] >> 1) & 3) | ((cbp & 3) << 2);
254 PutMCBPC_Inter(Int cbp, Int mode, BitstreamEncVideo *bitstream) argument
259 ind = (mode_MBtype[mode] & 7) | ((cbp & 3) << 3);

Completed in 279 milliseconds