Searched refs:totalMB (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmotion_est.cpp84 void RasterIntraUpdate(UChar *intraArray, UChar *Mode, Int totalMB, Int numRefresh);
85 void ResetIntraUpdate(UChar *intraArray, Int totalMB);
145 Int totalMB = currVol->nTotalMB; local
207 ResetIntraUpdate(intraArray, totalMB);
225 RasterIntraUpdate(intraArray, Mode, totalMB, video->encParams->Refresh);
463 //if(numIntra > ((totalMB>>3)<<1) + (totalMB>>3)) /* 75% of 50%MBs */
464 if (numIntra > (0.30*(totalMB / 2.0))) /* 15% of 50%MBs */
468 M4VENC_MEMSET(Mode, MODE_INTRA, sizeof(UChar)*totalMB); /* set this for MB level coding*/
494 ResetIntraUpdate(intraArray, totalMB);
1573 RasterIntraUpdate(UChar *intraArray, UChar *Mode, Int totalMB, Int numRefresh) argument
1611 ResetIntraUpdate(UChar *intraArray, Int totalMB) argument
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dmotion_est.cpp246 int totalMB = video->PicSizeInMbs; local
278 for (i = 0; i < totalMB; i++)
283 memset(intraSearch, 1, sizeof(uint8)*totalMB);
291 for (i = 0; i < totalMB; i++)
295 memset(intraSearch, 1, sizeof(uint8)*totalMB);
306 AVCRasterIntraUpdate(encvid, mblock, totalMB, rateCtrl->intraMBRate);
432 //if(NumIntraSearch > ((totalMB>>3)<<1) + (totalMB>>3)) /* 75% of 50%MBs */
433 if (NumIntraSearch*99 > (48*totalMB)) /* 20% of 50%MBs */
442 memset(intraSearch, 1, sizeof(uint8)*totalMB);
571 AVCRasterIntraUpdate(AVCEncObject *encvid, AVCMacroblock *mblock, int totalMB, int numRefresh) argument
[all...]
H A Davcenc_lib.h519 \param "totalMB" "Total number of MBs in a frame."
523 void AVCRasterIntraUpdate(AVCEncObject *encvid, AVCMacroblock *mblock, int totalMB, int numRefresh);

Completed in 51 milliseconds