Searched refs:next_frame (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | firstpass.c | 86 static int lookup_next_frame_stats(VP8_COMP *cpi, FIRSTPASS_STATS *next_frame) in lookup_next_frame_stats() argument 91 *next_frame = *cpi->twopass.stats_in; in lookup_next_frame_stats() 1417 static double get_prediction_decay_rate(VP8_COMP *cpi, FIRSTPASS_STATS *next_frame) in get_prediction_decay_rate() argument 1421 double motion_pct = next_frame->pcnt_motion; in get_prediction_decay_rate() 1425 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 …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_firstpass.c | 1392 const FIRSTPASS_STATS *next_frame) { in get_prediction_decay_rate() argument 1393 const double sr_decay_rate = get_sr_decay_rate(cpi, next_frame); in get_prediction_decay_rate() 1395 (0.95 * pow((next_frame->pcnt_inter - next_frame->pcnt_motion), in get_prediction_decay_rate() 1441 const FIRSTPASS_STATS *const next_frame = read_frame_stats(twopass, offset); in detect_flash() local 1448 return next_frame != NULL && in detect_flash() 1449 next_frame->pcnt_second_ref > next_frame->pcnt_inter && in detect_flash() 1450 next_frame->pcnt_second_ref >= 0.5; in detect_flash() 1853 FIRSTPASS_STATS next_frame; in define_gf_group() local 1899 vp9_zero(next_frame); in define_gf_group() 1967 if (EOF == input_stats(twopass, &next_frame)) in define_gf_group() [all …]
|
/external/webrtc/webrtc/modules/desktop_capture/ |
D | desktop_and_cursor_composer_unittest.cc | 83 void SetNextFrame(DesktopFrame* next_frame) { in SetNextFrame() argument 84 next_frame_.reset(next_frame); in SetNextFrame()
|
/external/lldb/source/Plugins/Process/Utility/ |
D | RegisterContextLLDB.h | 31 const SharedPtr& next_frame,
|
D | RegisterContextLLDB.cpp | 42 const SharedPtr &next_frame, in RegisterContextLLDB() argument 78 || next_frame->m_frame_type == eSigtrampFrame in RegisterContextLLDB() 79 || next_frame->m_frame_type == eDebuggerFrame) in RegisterContextLLDB()
|
/external/webrtc/webrtc/modules/video_coding/ |
D | jitter_buffer.cc | 1001 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()
|