Searched refs:kf_boost (Results 1 - 8 of 8) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
H A Dratectrl.c344 int kf_boost; local
383 kf_boost = MAX(initial_boost, (int)(2 * cpi->output_framerate - 16));
387 kf_boost = initial_boost;
391 kf_boost = kf_boost * kf_boost_qadjustment[Q] / 100;
395 kf_boost = (int)(kf_boost
399 if (kf_boost < 16)
400 kf_boost = 16;
402 target = ((16 + kf_boost) * cp
[all...]
H A Dfirstpass.c3065 int kf_boost = (int)boost_score; local
3073 while ((kf_boost < 48) && (Counter > 0))
3076 kf_boost ++;
3081 if (kf_boost < 48)
3083 kf_boost += ((Counter + 1) >> 1);
3085 if (kf_boost > 48) kf_boost = 48;
3092 kf_boost += 2 * (lst_yv12->y_width * lst_yv12->y_height) / (320 * 240);
3094 kf_boost -= 4 * (320 * 240) / (lst_yv12->y_width * lst_yv12->y_height);
3097 kf_boost
[all...]
H A Donyx_int.h451 int kf_boost; member in struct:VP8_COMP
H A Donyx_if.c3028 cpi->kf_boost = 0;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ratectrl.h73 int kf_boost; member in struct:__anon9587
H A Dvp9_ratectrl.c588 return get_active_quality(q, rc->kf_boost, kf_low, kf_high,
705 // not first frame of one pass and kf_boost is set
838 // not first frame of one pass and kf_boost is set
1429 rc->kf_boost = DEFAULT_KF_BOOST;
1511 int kf_boost = 32; local
1521 kf_boost = MAX(kf_boost, (int)(2 * framerate - 16));
1523 kf_boost = (int)(kf_boost * rc->frames_since_key /
1526 target = ((16 + kf_boost) * r
[all...]
H A Dvp9_firstpass.c2473 rc->kf_boost = (int)(av_decay_accumulator * boost_score);
2474 rc->kf_boost = MAX(rc->kf_boost, (rc->frames_to_key * 3));
2475 rc->kf_boost = MAX(rc->kf_boost, MIN_KF_BOOST);
2479 rc->kf_boost, twopass->kf_group_bits);
2722 rc->kf_boost, arf_count, rc->gfu_boost);
H A Dvp9_encoder.c2975 cpi->tot_recode_hits, recon_err, cpi->rc.kf_boost,

Completed in 116 milliseconds