OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:frameRange
(Results
1 - 5
of
5
) sorted by null
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
rate_control.cpp
210
rateCtrl->pMP->
frameRange
= (int)(rateCtrl->frame_rate * 1.0); /* 1.0s time frame*/
211
rateCtrl->pMP->
frameRange
= AVC_MAX(rateCtrl->pMP->
frameRange
, 5);
212
rateCtrl->pMP->
frameRange
= AVC_MIN(rateCtrl->pMP->
frameRange
, 30);
358
if (++pMP->framePos == pMP->
frameRange
) pMP->framePos = 0;
441
while (i < pMP->
frameRange
&& prev_mad < 0.001) /* find first one with nonzero prev_mad */
447
if (i < pMP->
frameRange
)
451
for (j = 0; i < pMP->
frameRange
; i++)
[
all
...]
avcenc_int.h
186
int
frameRange
; /* number of overall previous multiple frames */
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
mp4lib_int.h
285
Int
frameRange
; /* number of overall previous multiple frames */
rate_control.cpp
230
if (++pMP->framePos == pMP->
frameRange
) pMP->framePos = 0;
734
for (i = 0, j = 0; i < pMP->
frameRange
; i++)
[
all
...]
mp4enc_api.cpp
864
video->pMP[idx]->
frameRange
= (Int)(video->encParams->LayerFrameRate[idx] * 1.0); /* 1.0s time frame*/
865
video->pMP[idx]->
frameRange
= PV_MAX(video->pMP[idx]->
frameRange
, 5);
866
video->pMP[idx]->
frameRange
= PV_MIN(video->pMP[idx]->
frameRange
, 30);
[
all
...]
Completed in 51 milliseconds