OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:frameRange
(Results
1 - 6
of
6
) sorted by null
/external/qemu/audio/
coreaudio.c
293
AudioValueRange
frameRange
;
332
propertySize = sizeof(
frameRange
);
339
&
frameRange
);
346
if (
frameRange
.mMinimum > frameSize) {
347
core->bufferFrameSize = (UInt32)
frameRange
.mMinimum;
348
dolog ("warning: Upsizing Output Buffer Frames to %f\n",
frameRange
.mMinimum);
350
else if (
frameRange
.mMaximum < frameSize) {
351
core->bufferFrameSize = (UInt32)
frameRange
.mMaximum;
352
dolog ("warning: Downsizing Output Buffer Frames to %f\n",
frameRange
.mMaximum);
/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
834
video->pMP[idx]->
frameRange
= (Int)(video->encParams->LayerFrameRate[idx] * 1.0); /* 1.0s time frame*/
835
video->pMP[idx]->
frameRange
= PV_MAX(video->pMP[idx]->
frameRange
, 5);
836
video->pMP[idx]->
frameRange
= PV_MIN(video->pMP[idx]->
frameRange
, 30);
[
all
...]
Completed in 579 milliseconds