HomeSort by relevance Sort by last modified time
    Searched full:cbp (Results 1 - 25 of 60) sorted by null

1 2 3

  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
slice.cpp 229 currMB->CBP = 0;
247 currMB->CBP |= (1 << b8);
265 if ((currMB->CBP&(1 << b8)) && (cost8 <= _LUMA_COEFF_COST_))
269 currMB->CBP ^= (1 << b8);
293 if ((currMB->CBP&0xF) && (cost16 <= _LUMA_MB_COEFF_COST_))
295 currMB->CBP = 0; // reset it to zero
310 currMB->CBP = 0;
336 if (!currMB->CBP && currMB->NumMbPart == 1 && currMB->QPy == video->QPy)
414 /* encode mb_type, mb_pred, sub_mb_pred, CBP */
453 if (currMB->CBP&(1 << b8)
    [all...]
vlc_encode.cpp 113 codeNum = MapCBP2code[currMB->CBP][0];
117 codeNum = MapCBP2code[currMB->CBP][1];
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
fastquant.cpp 125 return CBP for this block
445 Int CBP = 0;
465 return CBP;//rcoeff[0] = 0; not needed since CBP will be zero
489 CBP = 1;
491 return CBP;
552 Int CBP = 0;
651 CBP = 1; /* check CBP before mismatch control, 7/5/01 */
654 if (CBP)
    [all...]
fastcodemb.cpp 52 Int sad, k, CBP, mbnum = video->mbnum;
87 CBP = 0;
138 CBP <<= 1;
197 CBP |= 0;
205 CBP |= (*BlockQuantDequantH263DC)(dataBlock, output, &QuantParam,
233 CBP |= (*BlockQuantDequantH263)(dataBlock, output, &QuantParam,
248 video->headerInfo.CBP[mbnum] = CBP; /* 5/18/2001 */
281 Int sad, k, CBP, mbnum = video->mbnum;
318 CBP = 0
    [all...]
vlc_encode.cpp 239 PutMCBPC_Intra(Int cbp, Int mode, BitstreamEncVideo *bitstream)
244 ind = ((mode_MBtype[mode] >> 1) & 3) | ((cbp & 3) << 2);
254 PutMCBPC_Inter(Int cbp, Int mode, BitstreamEncVideo *bitstream)
259 ind = (mode_MBtype[mode] & 7) | ((cbp & 3) << 3);
892 UChar CBP;
901 /* DC and AC Prediction, 5/28/01, compute CBP, intraDC_decision*/
904 /* CBP, Run, Level, and Sign */
906 CBP = video->headerInfo.CBP[mbnum];
925 PutMCBPC_Intra(CBP, Mode, bs1); /* MCBPC *
    [all...]
datapart_encode.cpp 237 UChar CBP;
363 CBP = video->headerInfo.CBP[mbnum];
421 video->headerInfo.CBP[mbnum] = CBP;
combined_encode.cpp 289 UChar CBP = 0;
441 CBP = video->headerInfo.CBP[mbnum];
492 video->headerInfo.CBP[mbnum] = CBP;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
combined_decode.cpp 462 video->headerInfo.CBP[mbnum] = (uint8)(CBPY << 2 | (CBPC & 3));
534 uint CBP = video->headerInfo.CBP[mbnum];
665 MBMotionComp(video, CBP);
672 if (CBP & (1 << (5 - comp)))
702 if (CBP & 2)
726 if (CBP & 1)
754 if (CBP & (1 << (5 - comp)))
780 if (CBP & 2)
804 if (CBP & 1
    [all...]
datapart_decode.cpp 174 video->headerInfo.CBP[mbnum] = (uint8)((MCBPC >> 4) & 3);
254 video->headerInfo.CBP[mbnum] |= (uint8)(CBPY << 2);
441 video->headerInfo.CBP[mbnum] |= (uint8)(CBPY << 2);
608 video->headerInfo.CBP[mbnum] = (uint8)((MCBPC >> 4) & 3);
628 uint CBP = video->headerInfo.CBP[mbnum];
714 MBMotionComp(video, CBP);
723 if (CBP & (1 << (5 - comp)))
748 if (CBP & 2)
768 if (CBP & 1
    [all...]
vlc_dequant.cpp 58 uint CBP = video->headerInfo.CBP[mbnum];
110 if (CBP & (1 << (5 - comp)))
509 uint CBP = video->headerInfo.CBP[mbnum];
555 if (CBP & (1 << (5 - comp)))
811 uint CBP = video->headerInfo.CBP[mbnum];
858 if ((CBP & (1 << (5 - comp))) == 0)
940 if (CBP & (1 << (5 - comp))
    [all...]
mb_motion_comp.cpp 121 int CBP
259 if ((CBP >> 5)&1)
295 if ((CBP >> 4)&1)
331 if ((CBP >> 3)&1)
368 if ((CBP >> 2)&1)
476 if ((CBP >> 1)&1)
491 if (CBP&1)
512 if ((CBP >> 1)&1)
527 if (CBP&1)
motion_comp.h 35 /* CBP Mask defines used in chrominance prediction */
39 /* CBP Mask defines used in luminance prediction (MODE_INTER4V) */
45 /* CBP Mask defines used in luminance prediction (MODE_INTER or MODE_INTER_Q) */
conceal.cpp 65 video->headerInfo.CBP[mbnum] = 0;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_video.c 107 unsigned cbp = mb->coded_block_pattern; local
110 if (cbb & cbp) {
143 unsigned cbp = mb->coded_block_pattern; local
146 if (cbb & cbp) {
162 unsigned base_dct, cbp; local
174 cbp = 0x3f;
176 cbp = mb->coded_block_pattern;
191 base_dct |= (cbp >> 2) << NV17_MPEG_CMD_LUMA_MB_HEADER_CBP__SHIFT;
194 base_dct |= (cbp & 3) << NV17_MPEG_CMD_CHROMA_MB_HEADER_CBP__SHIFT;
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_video.c 107 unsigned cbp = mb->coded_block_pattern; local
110 if (cbb & cbp) {
143 unsigned cbp = mb->coded_block_pattern; local
146 if (cbb & cbp) {
162 unsigned base_dct, cbp; local
174 cbp = 0x3f;
176 cbp = mb->coded_block_pattern;
191 base_dct |= (cbp >> 2) << NV17_MPEG_CMD_LUMA_MB_HEADER_CBP__SHIFT;
194 base_dct |= (cbp & 3) << NV17_MPEG_CMD_CHROMA_MB_HEADER_CBP__SHIFT;
  /frameworks/base/docs/html/guide/appendix/
app-intents.jd 76 <td>google.streetview:cbll=<em>lat</em>,<em>lng</em>&amp;cbp=1,<em>yaw</em>,,<em>pitch</em>,<em>zoom</em>&amp;mz=<em>mapZoom</em>
81 The cbll field is required. The cbp and mz fields are optional.<p>
g-app-intents.jd 87 <td>google.streetview:cbll=<em>lat</em>,<em>lng</em>&amp;cbp=1,<em>yaw</em>,,<em>pitch</em>,<em>zoom</em>&amp;mz=<em>mapZoom</em>
92 The cbll field is required. The cbp and mz fields are optional.<p>
  /packages/apps/Settings/src/com/android/settings/wfd/
WifiDisplaySettings.java 369 CheckBoxPreference cbp = new CheckBoxPreference(getActivity()) { local
377 cbp.setTitle(R.string.wifi_display_listen_mode);
378 cbp.setChecked(mListen);
379 mCertCategory.addPreference(cbp);
382 cbp = new CheckBoxPreference(getActivity()) {
394 cbp.setTitle(R.string.wifi_display_autonomous_go);
395 cbp.setChecked(mAutoGO);
396 mCertCategory.addPreference(cbp);
  /external/qemu/hw/
usb-ohci.c 200 uint32_t cbp; member in struct:ohci_td
556 ptr = td->cbp;
894 if (td.cbp && td.be) {
895 if ((td.cbp & 0xfffff000) != (td.be & 0xfffff000)) {
896 len = (td.be & 0xfff) + 0x1001 - (td.cbp & 0xfff);
898 len = (td.be - td.cbp) + 1;
908 dprintf(" TD @ 0x%.8x %u bytes %s r=%d cbp=0x%.8x be=0x%.8x\n",
909 addr, len, str, flag_r, td.cbp, td.be);
977 td.cbp = 0;
979 td.cbp += ret
    [all...]
  /external/dhcpcd/
ipv6rs.c 286 const char *cbp; local
468 cbp = inet_ntop(AF_INET6, &addr,
470 if (cbp == NULL) {
478 l + strlen(cbp) + 2);
480 strcpy(opt + l + 1, cbp);
482 opt = xstrdup(cbp);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_mpeg12_bitstream.c 720 int i, cbp, blk = 0; local
724 mb->coded_block_pattern = cbp = intra ? 0x3F : vl_vlc_get_vlclbf(&bs->vlc, tbl_B9, 9);
733 cbp <<= 1;
734 cbp &= 0x3F;
738 if (!cbp)
741 while(!(cbp & 0x20)) {
742 cbp <<= 1;
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_mpeg12_bitstream.c 720 int i, cbp, blk = 0; local
724 mb->coded_block_pattern = cbp = intra ? 0x3F : vl_vlc_get_vlclbf(&bs->vlc, tbl_B9, 9);
733 cbp <<= 1;
734 cbp &= 0x3F;
738 if (!cbp)
741 while(!(cbp & 0x20)) {
742 cbp <<= 1;
  /external/wpa_supplicant_8/src/wps/
httpread.c 547 char *cbp = h->body + h->chunk_start; local
548 if (bbp-cbp >= 2 && bbp[-2] == '\r' &&
554 if (!isxdigit(*cbp))
556 h->chunk_size = strtoul(cbp, NULL, 16);
561 bbp = cbp;
  /external/clang/test/SemaCXX/
functional-cast.cpp 129 typedef const B *cBp;
130 (void)cBp((C1*)0);
  /external/libvpx/libvpx/vp8/decoder/
detokenize.c 94 { /* first EOB is more a 'CBP' bit. */

Completed in 301 milliseconds

1 2 3