OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:min_frame_target
(Results
1 - 2
of
2
) sorted by null
/external/libvpx/libvpx/vp8/encoder/
ratectrl.c
616
int
min_frame_target
;
local
623
min_frame_target
= 0;
627
min_frame_target
= cpi->min_frame_bandwidth;
629
if (
min_frame_target
< (cpi->av_per_frame_bandwidth >> 5))
630
min_frame_target
= cpi->av_per_frame_bandwidth >> 5;
632
else if (
min_frame_target
< cpi->per_frame_bandwidth / 4)
633
min_frame_target
= cpi->per_frame_bandwidth / 4;
669
if (Adjustment > (cpi->per_frame_bandwidth -
min_frame_target
))
670
Adjustment = (cpi->per_frame_bandwidth -
min_frame_target
);
680
if (cpi->this_frame_target <
min_frame_target
)
[
all
...]
/external/libvpx/libvpx/vp9/encoder/
vp9_ratectrl.c
182
const int
min_frame_target
= MAX(cpi->min_frame_bandwidth,
local
200
if (cpi->this_frame_target <
min_frame_target
)
201
cpi->this_frame_target =
min_frame_target
;
Completed in 700 milliseconds