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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_ratectrl.h35 int kf_boost; member in struct:__anon1168
H A Dvp9_ratectrl.c512 // not first frame of one pass and kf_boost is set
517 rc->kf_boost,
624 // not first frame of one pass and kf_boost is set
629 rc->kf_boost,
811 rc->kf_boost,
1211 rc->kf_boost = DEFAULT_KF_BOOST;
1272 int kf_boost = MAX(initial_boost, (int)(2 * cpi->output_framerate - 16)); local
1274 kf_boost = (int)(kf_boost * rc->frames_since_key /
1277 target = ((16 + kf_boost) * r
[all...]
H A Dvp9_firstpass.c2103 int kf_boost = (int)boost_score; local
2107 if (kf_boost < (rc->frames_to_key * 3))
2108 kf_boost = (rc->frames_to_key * 3);
2110 if (kf_boost < MIN_KF_BOOST)
2111 kf_boost = MIN_KF_BOOST;
2115 rc->kf_boost = kf_boost;
2130 // taken care of by kf_boost.
2132 allocation_chunks = ((rc->frames_to_key - 1) * 10) + kf_boost;
2134 allocation_chunks = ((rc->frames_to_key - 1) * 100) + kf_boost;
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/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.c3067 int kf_boost = (int)boost_score; local
3075 while ((kf_boost < 48) && (Counter > 0))
3078 kf_boost ++;
3083 if (kf_boost < 48)
3085 kf_boost += ((Counter + 1) >> 1);
3087 if (kf_boost > 48) kf_boost = 48;
3094 kf_boost += 2 * (lst_yv12->y_width * lst_yv12->y_height) / (320 * 240);
3096 kf_boost -= 4 * (320 * 240) / (lst_yv12->y_width * lst_yv12->y_height);
3099 kf_boost
[all...]
H A Donyx_int.h454 int kf_boost; member in struct:VP8_COMP

Completed in 96 milliseconds