HomeSort by relevance Sort by last modified time
    Searched refs:CBP (Results 1 - 23 of 23) sorted by null

  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
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...]
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...]
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;
mp4lib_int.h 147 UChar *CBP; /* MCBPC/CBPY stuff */
mp4enc_api.cpp 652 video->headerInfo.CBP = (UChar *) M4VENC_MALLOC(sizeof(UChar) * nTotalMB); /* Memory for CBP (Y and C) of each MB */
653 if (video->headerInfo.CBP == NULL) goto CLEAN_UP;
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
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)
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...]
conceal.cpp 65 video->headerInfo.CBP[mbnum] = 0;
mp4lib_int.h 151 uint8 *CBP; /* MCBPC/CBPY stuff */
mp4dec_lib.h 126 void MBMotionComp(VideoDecData *video, int CBP);
pvdec_api.cpp 376 video->headerInfo.CBP = (uint8 *)(IMEM_headerInfo_CBP);
377 if (video->headerInfo.CBP == NULL) status = PV_FALSE;
417 video->headerInfo.CBP = (uint8 *) oscl_malloc(nTotalMB);
418 if (video->headerInfo.CBP == NULL) status = PV_FALSE;
575 video->headerInfo.CBP = NULL;
640 if (video->headerInfo.CBP) oscl_free(video->headerInfo.CBP);
    [all...]
  /frameworks/base/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];
block.cpp 272 if (currMB->CBP&(1 << b8))
580 currMB->CBP = 0;
630 currMB->CBP |= (1 << b8);
865 currMB->CBP |= (1 << 4); // DC present
1027 currMB->CBP |= (2 << 4);
    [all...]
intra_est.cpp 125 currMB->CBP = 0;
679 currMB->CBP |= (1 << b8);
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
slice.cpp 166 currMB->CBP = 0;
216 if (currMB->CBP > 0 || currMB->mbMode == AVC_I16)
255 currMB->CBP = 0x3F;
464 mblock->CBP = (((mb_type - 13) >> 2) << 4) + 0x0F;
468 mblock->CBP = ((mb_type - 1) >> 2) << 4;
759 currMB->CBP = 0;
residual.cpp 232 if (currMB->CBP&(1 << mbPartIdx))
275 if (currMB->CBP & (3 << 4)) /* chroma DC residual present */
302 if (currMB->CBP & (2 << 4))
vlc.cpp 265 currMB->CBP = coded_block_pattern;
  /frameworks/base/media/libstagefright/codecs/avc/common/include/
avcint_common.h 585 uint CBP; /* CodeBlockPattern */
    [all...]

Completed in 283 milliseconds