Searched defs:kf_boost (Results 1 - 5 of 5) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ratectrl.h47 int kf_boost; member in struct:__anon9586
H A Dvp9_ratectrl.c428 return get_active_quality(q, rc->kf_boost, kf_low, kf_high,
532 // not first frame of one pass and kf_boost is set
661 // not first frame of one pass and kf_boost is set
1149 rc->kf_boost = DEFAULT_KF_BOOST;
1210 int kf_boost = 32; local
1218 kf_boost = MAX(kf_boost, (int)(2 * framerate - 16));
1220 kf_boost = (int)(kf_boost * rc->frames_since_key /
1223 target = ((16 + kf_boost) * r
[all...]
/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.c3064 int kf_boost = (int)boost_score; local
3072 while ((kf_boost < 48) && (Counter > 0))
3075 kf_boost ++;
3080 if (kf_boost < 48)
3082 kf_boost += ((Counter + 1) >> 1);
3084 if (kf_boost > 48) kf_boost = 48;
3091 kf_boost += 2 * (lst_yv12->y_width * lst_yv12->y_height) / (320 * 240);
3093 kf_boost -= 4 * (320 * 240) / (lst_yv12->y_width * lst_yv12->y_height);
3096 kf_boost
[all...]
H A Donyx_int.h451 int kf_boost; member in struct:VP8_COMP

Completed in 121 milliseconds