Home
last modified time | relevance | path

Searched refs:this_duration (Results 1 – 2 of 2) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Donyx_if.c4941 int64_t this_duration; in vp8_get_compressed_data() local
4945 this_duration = cpi->source->ts_end - cpi->source->ts_start; in vp8_get_compressed_data()
4950 this_duration = cpi->source->ts_end - cpi->last_end_time_stamp_seen; in vp8_get_compressed_data()
4954 step = (int)(((this_duration - last_duration) * 10 / last_duration)); in vp8_get_compressed_data()
4958 if (this_duration) { in vp8_get_compressed_data()
4960 cpi->ref_framerate = 10000000.0 / this_duration; in vp8_get_compressed_data()
4972 avg_duration *= (interval - avg_duration + this_duration); in vp8_get_compressed_data()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encoder.c4704 int64_t this_duration; local
4708 this_duration = source->ts_end - source->ts_start;
4714 this_duration = source->ts_end - cpi->last_end_time_stamp_seen;
4718 step = (int)((this_duration - last_duration) * 10 / last_duration);
4721 if (this_duration) {
4723 vp9_new_framerate(cpi, 10000000.0 / this_duration);
4731 avg_duration *= (interval - avg_duration + this_duration);