OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:totalMB
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
motion_est.cpp
84
void RasterIntraUpdate(UChar *intraArray, UChar *Mode, Int
totalMB
, Int numRefresh);
85
void ResetIntraUpdate(UChar *intraArray, Int
totalMB
);
145
Int
totalMB
= currVol->nTotalMB;
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
);
[
all
...]
/frameworks/base/media/libstagefright/codecs/avc/enc/src/
motion_est.cpp
246
int
totalMB
= video->PicSizeInMbs;
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
);
[
all
...]
avcenc_lib.h
519
\param "
totalMB
" "Total number of MBs in a frame."
523
void AVCRasterIntraUpdate(AVCEncObject *encvid, AVCMacroblock *mblock, int
totalMB
, int numRefresh);
[
all
...]
Completed in 208 milliseconds