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

/external/libvpx/libvpx/vp8/encoder/
H A Dratectrl.c296 int kf_boost; local
330 kf_boost = VPXMAX(initial_boost, (int)(2 * cpi->output_framerate - 16));
333 kf_boost = initial_boost;
337 kf_boost = kf_boost * kf_boost_qadjustment[Q] / 100;
341 kf_boost =
342 (int)(kf_boost * cpi->frames_since_key / (cpi->output_framerate / 2));
346 if (kf_boost < 16) kf_boost = 16;
348 target = ((16 + kf_boost) * cp
[all...]
H A Dfirstpass.c2855 int kf_boost = (int)boost_score; local
2863 while ((kf_boost < 48) && (Counter > 0))
2866 kf_boost ++;
2871 if (kf_boost < 48) {
2872 kf_boost += ((Counter + 1) >> 1);
2874 if (kf_boost > 48) kf_boost = 48;
2881 kf_boost += 2 * (lst_yv12->y_width * lst_yv12->y_height) / (320 * 240);
2883 kf_boost -= 4 * (320 * 240) / (lst_yv12->y_width * lst_yv12->y_height);
2887 kf_boost
[all...]
H A Donyx_int.h432 int kf_boost; member in struct:VP8_COMP
H A Donyx_if.c2762 cpi->kf_boost = 0;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ratectrl.h90 int kf_boost; member in struct:__anon12905
H A Dvp9_ratectrl.c622 return get_active_quality(q, rc->kf_boost, kf_low, kf_high,
753 // not first frame of one pass and kf_boost is set
906 // not first frame of one pass and kf_boost is set
1555 rc->kf_boost = DEFAULT_KF_BOOST;
1668 int kf_boost = 32; local
1678 kf_boost = VPXMAX(kf_boost, (int)(2 * framerate - 16));
1680 kf_boost = (int)(kf_boost * rc->frames_since_key / (framerate / 2));
1682 target = ((16 + kf_boost) * r
[all...]
H A Dvp9_firstpass.c3040 rc->kf_boost = VPXMAX((int)boost_score, (rc->frames_to_key * 3));
3041 rc->kf_boost = VPXMAX(rc->kf_boost, MIN_KF_TOT_BOOST);
3042 rc->kf_boost = VPXMIN(rc->kf_boost, MAX_KF_TOT_BOOST);
3045 kf_bits = calculate_boost_bits((rc->frames_to_key - 1), rc->kf_boost,
3273 rc->frames_till_gf_update_due, rc->kf_boost, arf_count,
H A Dvp9_encoder.c3203 "tot_recode_hits, recon_err, kf_boost, "
3243 cpi->tot_recode_hits, recon_err, cpi->rc.kf_boost,

Completed in 151 milliseconds