Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_firstpass.c85 FIRSTPASS_STATS *next_frame) { in lookup_next_frame_stats() argument
89 *next_frame = *p->stats_in; in lookup_next_frame_stats()
1044 const FIRSTPASS_STATS *next_frame) { in get_prediction_decay_rate() argument
1047 const double mb_sr_err_diff = (next_frame->sr_coded_error - in get_prediction_decay_rate()
1048 next_frame->coded_error) / cm->MBs; in get_prediction_decay_rate()
1053 return MIN(second_ref_decay, next_frame->pcnt_inter); in get_prediction_decay_rate()
1098 FIRSTPASS_STATS next_frame; in detect_flash() local
1104 if (read_frame_stats(twopass, &next_frame, offset) != EOF) { in detect_flash()
1110 if (next_frame.pcnt_second_ref > next_frame.pcnt_inter && in detect_flash()
1111 next_frame.pcnt_second_ref >= 0.5) in detect_flash()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dfirstpass.c87 static int lookup_next_frame_stats(VP8_COMP *cpi, FIRSTPASS_STATS *next_frame) in lookup_next_frame_stats() argument
92 *next_frame = *cpi->twopass.stats_in; in lookup_next_frame_stats()
1418 static double get_prediction_decay_rate(VP8_COMP *cpi, FIRSTPASS_STATS *next_frame) in get_prediction_decay_rate() argument
1422 double motion_pct = next_frame->pcnt_motion; in get_prediction_decay_rate()
1426 prediction_decay_rate = next_frame->pcnt_inter; in get_prediction_decay_rate()
1438 this_mv_rabs = fabs(next_frame->mvr_abs * motion_pct); in get_prediction_decay_rate()
1439 this_mv_cabs = fabs(next_frame->mvc_abs * motion_pct); in get_prediction_decay_rate()
1505 FIRSTPASS_STATS next_frame; in detect_flash() local
1511 if ( read_frame_stats(cpi, &next_frame, offset) != EOF ) in detect_flash()
1519 if ( (next_frame.pcnt_second_ref > next_frame.pcnt_inter) && in detect_flash()
[all …]