Home
last modified time | relevance | path

Searched refs:cbp (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_macroblock_layer.c885 u32 cbp; in CbpIntra16x16() local
893 cbp = 15; in CbpIntra16x16()
895 cbp = 0; in CbpIntra16x16()
903 cbp += tmp << 4; in CbpIntra16x16()
905 return(cbp); in CbpIntra16x16()
/frameworks/base/docs/html/guide/appendix/
Dapp-intents.jd76 …<td>google.streetview:cbll=<em>lat</em>,<em>lng</em>&amp;cbp=1,<em>yaw</em>,,<em>pitch</em>,<em>zo…
81 The cbll field is required. The cbp and mz fields are optional.<p>
Dg-app-intents.jd87 <td>google.streetview:cbll=<em>lat</em>,<em>lng</em>&amp;cbp=1,<em>yaw</em>,,<em>pitch</em>,<em>zoo…
92 The cbll field is required. The cbp and mz fields are optional.<p>
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dvlc_encode.cpp239 PutMCBPC_Intra(Int cbp, Int mode, BitstreamEncVideo *bitstream) in PutMCBPC_Intra() argument
244 ind = ((mode_MBtype[mode] >> 1) & 3) | ((cbp & 3) << 2); in PutMCBPC_Intra()
254 PutMCBPC_Inter(Int cbp, Int mode, BitstreamEncVideo *bitstream) in PutMCBPC_Inter() argument
259 ind = (mode_MBtype[mode] & 7) | ((cbp & 3) << 3); in PutMCBPC_Inter()