Searched refs:frames_to_key (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dfirstpass.c1801 ((cpi->twopass.frames_to_key - i) < MIN_GF_INTERVAL)) &&
1802 (i < cpi->twopass.frames_to_key))
1860 ((cpi->twopass.frames_to_key - i) >= MIN_GF_INTERVAL) &&
1911 if ((cpi->twopass.frames_to_key - i) < MIN_GF_INTERVAL)
1913 while (i < cpi->twopass.frames_to_key)
1920 if (i < cpi->twopass.frames_to_key)
1939 (i <= (cpi->twopass.frames_to_key - MIN_GF_INTERVAL)) &&
2111 if (cpi->twopass.frames_to_key >= (int)(cpi->twopass.total_stats.count -
2440 if (cpi->twopass.frames_to_key == 0)
2458 cpi->baseline_gf_interval = cpi->twopass.frames_to_key;
[all...]
H A Donyx_int.h585 int frames_to_key; member in struct:VP8_COMP::twopass_rc
H A Donyx_if.c4519 if ( cpi->next_key_frame_forced && (cpi->twopass.frames_to_key == 0) )
/external/libvpx/libvpx/vp8/encoder/
H A Dfirstpass.c1801 ((cpi->twopass.frames_to_key - i) < MIN_GF_INTERVAL)) &&
1802 (i < cpi->twopass.frames_to_key))
1860 ((cpi->twopass.frames_to_key - i) >= MIN_GF_INTERVAL) &&
1911 if ((cpi->twopass.frames_to_key - i) < MIN_GF_INTERVAL)
1913 while (i < cpi->twopass.frames_to_key)
1920 if (i < cpi->twopass.frames_to_key)
1939 (i <= (cpi->twopass.frames_to_key - MIN_GF_INTERVAL)) &&
2111 if (cpi->twopass.frames_to_key >= (int)(cpi->twopass.total_stats.count -
2440 if (cpi->twopass.frames_to_key == 0)
2458 cpi->baseline_gf_interval = cpi->twopass.frames_to_key;
[all...]
H A Donyx_int.h586 int frames_to_key; member in struct:VP8_COMP::twopass_rc
H A Donyx_if.c4324 if ( cpi->next_key_frame_forced && (cpi->twopass.frames_to_key == 0) )
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ratectrl.h49 int frames_to_key; member in struct:__anon24961
H A Dvp9_firstpass.c1360 if (cpi->rc.frames_to_key <= (FIXED_ARF_GROUP_SIZE + 8)) {
1363 cpi->rc.baseline_gf_interval = cpi->rc.frames_to_key;
1474 while (i < rc->static_scene_max_gf_interval && i < rc->frames_to_key) {
1545 if ((rc->frames_to_key - i) < MIN_GF_INTERVAL) {
1546 while (i < (rc->frames_to_key + !rc->next_key_frame_forced)) {
1552 if (i < rc->frames_to_key) {
1583 (i <= (rc->frames_to_key - MIN_GF_INTERVAL)))) {
1927 rc->frames_to_key = 1;
1971 ++rc->frames_to_key;
1975 if (rc->frames_to_key >
[all...]
H A Dvp9_ratectrl.c1150 rc->frames_to_key--;
1159 cpi->rc.frames_to_key--;
1200 rc->frames_to_key == 0 ||
1204 rc->frames_to_key == 0;
1205 rc->frames_to_key = cpi->key_frame_frequency;
1214 // NOTE: frames_till_gf_update_due must be <= frames_to_key.
1215 if (rc->frames_till_gf_update_due > rc->frames_to_key)
1216 rc->frames_till_gf_update_due = rc->frames_to_key;
1308 rc->frames_to_key == 0 ||
1312 rc->frames_to_key
[all...]
H A Dvp9_svc_layercontext.c173 const int old_frame_to_key = cpi->rc.frames_to_key;
182 // Reset the frames_since_key and frames_to_key counters to their values
186 cpi->rc.frames_to_key = old_frame_to_key;
H A Dvp9_onyx_if.c2638 if (cpi->rc.next_key_frame_forced && cpi->rc.frames_to_key == 1) {
2950 assert(frames_to_arf <= rc->frames_to_key);
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_ratectrl.h58 int frames_to_key; member in struct:__anon13184
H A Dvp9_firstpass.c388 cpi->rc.frames_to_key = INT_MAX;
1629 while (i < rc->static_scene_max_gf_interval && i < rc->frames_to_key) {
1907 rc->frames_to_key = 1;
1917 rc->frames_to_key < cpi->oxcf.key_freq) {
1953 ++rc->frames_to_key;
1957 if (rc->frames_to_key >= 2 * cpi->oxcf.key_freq)
1960 ++rc->frames_to_key;
1970 rc->frames_to_key > cpi->oxcf.key_freq) {
1973 rc->frames_to_key /= 2;
1981 for (i = 0; i < rc->frames_to_key;
[all...]
H A Dvp9_ratectrl.c1230 rc->frames_to_key--;
1239 cpi->rc.frames_to_key--;
1277 rc->frames_to_key == 0 ||
1281 rc->frames_to_key == 0;
1282 rc->frames_to_key = cpi->oxcf.key_freq;
1291 // NOTE: frames_till_gf_update_due must be <= frames_to_key.
1292 if (rc->frames_till_gf_update_due > rc->frames_to_key)
1293 rc->frames_till_gf_update_due = rc->frames_to_key;
1413 rc->frames_to_key == 0 ||
1417 rc->frames_to_key
[all...]
H A Dvp9_svc_layercontext.c180 const int old_frame_to_key = cpi->rc.frames_to_key;
186 // Reset the frames_since_key and frames_to_key counters to their values
190 cpi->rc.frames_to_key = old_frame_to_key;
H A Dvp9_encoder.c2291 if (cpi->rc.next_key_frame_forced && cpi->rc.frames_to_key == 1) {
2602 assert(arf_src_index <= rc->frames_to_key);

Completed in 530 milliseconds