Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c84 static int lookup_next_frame_stats(VP8_COMP *cpi, FIRSTPASS_STATS *next_frame) { in lookup_next_frame_stats() argument
87 *next_frame = *cpi->twopass.stats_in; in lookup_next_frame_stats()
1342 FIRSTPASS_STATS *next_frame) { in get_prediction_decay_rate() argument
1345 double motion_pct = next_frame->pcnt_motion; in get_prediction_decay_rate()
1349 prediction_decay_rate = next_frame->pcnt_inter; in get_prediction_decay_rate()
1363 this_mv_rabs = fabs(next_frame->mvr_abs * motion_pct); in get_prediction_decay_rate()
1364 this_mv_cabs = fabs(next_frame->mvc_abs * motion_pct); in get_prediction_decay_rate()
1421 FIRSTPASS_STATS next_frame; in detect_flash() local
1427 if (read_frame_stats(cpi, &next_frame, offset) != EOF) { in detect_flash()
1434 if ((next_frame.pcnt_second_ref > next_frame.pcnt_inter) && in detect_flash()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c1813 const FIRSTPASS_STATS *next_frame) { in get_prediction_decay_rate() argument
1814 const double sr_decay_rate = get_sr_decay_rate(cpi, next_frame); in get_prediction_decay_rate()
1816 (0.95 * pow((next_frame->pcnt_inter - next_frame->pcnt_motion), in get_prediction_decay_rate()
1859 const FIRSTPASS_STATS *const next_frame = read_frame_stats(twopass, offset); in detect_flash() local
1866 return next_frame != NULL && in detect_flash()
1867 next_frame->pcnt_second_ref > next_frame->pcnt_inter && in detect_flash()
1868 next_frame->pcnt_second_ref >= 0.5; in detect_flash()
2324 FIRSTPASS_STATS next_frame; in define_gf_group() local
2372 vp9_zero(next_frame); in define_gf_group()
2450 if (EOF == input_stats(twopass, &next_frame)) break; in define_gf_group()
[all …]
/external/webrtc/webrtc/modules/desktop_capture/
Ddesktop_and_cursor_composer_unittest.cc83 void SetNextFrame(DesktopFrame* next_frame) { in SetNextFrame() argument
84 next_frame_.reset(next_frame); in SetNextFrame()
/external/webrtc/webrtc/modules/video_coding/
Djitter_buffer.cc1001 VCMFrameBuffer* next_frame = NextFrame(); in GetNackList() local
1002 const bool first_frame_is_key = next_frame && in GetNackList()
1003 next_frame->FrameType() == kVideoFrameKey && in GetNackList()
1004 next_frame->HaveFirstPacket(); in GetNackList()