Searched refs:next_frame (Results 1 – 6 of 6) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | pass2_strategy.c | 287 const FIRSTPASS_STATS *next_frame) { in get_prediction_decay_rate() argument 288 const double sr_decay_rate = get_sr_decay_rate(cpi, next_frame); in get_prediction_decay_rate() 290 (0.95 * pow((next_frame->pcnt_inter - next_frame->pcnt_motion), in get_prediction_decay_rate() 333 const FIRSTPASS_STATS *const next_frame = read_frame_stats(twopass, offset); in detect_flash() local 340 return next_frame != NULL && in detect_flash() 341 next_frame->pcnt_second_ref > next_frame->pcnt_inter && in detect_flash() 342 next_frame->pcnt_second_ref >= 0.5; in detect_flash() 739 FIRSTPASS_STATS next_frame; in define_gf_group() local 785 av1_zero(next_frame); in define_gf_group() 830 if (EOF == input_stats(twopass, &next_frame)) break; in define_gf_group() [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | firstpass.c | 84 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() 1341 FIRSTPASS_STATS *next_frame) { in get_prediction_decay_rate() argument 1344 double motion_pct = next_frame->pcnt_motion; in get_prediction_decay_rate() 1348 prediction_decay_rate = next_frame->pcnt_inter; in get_prediction_decay_rate() 1362 this_mv_rabs = fabs(next_frame->mvr_abs * motion_pct); in get_prediction_decay_rate() 1363 this_mv_cabs = fabs(next_frame->mvc_abs * motion_pct); in get_prediction_decay_rate() 1420 FIRSTPASS_STATS next_frame; in detect_flash() local 1426 if (read_frame_stats(cpi, &next_frame, offset) != EOF) { in detect_flash() 1433 if ((next_frame.pcnt_second_ref > next_frame.pcnt_inter) && in detect_flash() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_firstpass.c | 1791 const FIRSTPASS_STATS *next_frame) { in get_prediction_decay_rate() argument 1792 const double sr_decay_rate = get_sr_decay_rate(cpi, next_frame); in get_prediction_decay_rate() 1794 (0.95 * pow((next_frame->pcnt_inter - next_frame->pcnt_motion), in get_prediction_decay_rate() 1837 const FIRSTPASS_STATS *const next_frame = read_frame_stats(twopass, offset); in detect_flash() local 1845 return next_frame != NULL && in detect_flash() 1846 ((next_frame->sr_coded_error < next_frame->coded_error) || in detect_flash() 1847 ((next_frame->pcnt_second_ref > next_frame->pcnt_inter) && in detect_flash() 1848 (next_frame->pcnt_second_ref >= 0.5))); in detect_flash() 2416 FIRSTPASS_STATS next_frame; in define_gf_group() local 2461 vp9_zero(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/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()
|
/external/aac/libAACdec/src/ |
D | usacdec_lpd.cpp | 943 int next_frame = frame + (1 << (mod - 1)); in CLpd_TcxDecode() local 1023 pAacDecoderChannelInfo->data.usac.lsp_coeff[next_frame], in CLpd_TcxDecode() 1024 pAacDecoderChannelInfo->data.usac.lp_coeff[next_frame], in CLpd_TcxDecode() 1025 &pAacDecoderChannelInfo->data.usac.lp_coeff_exp[next_frame]); in CLpd_TcxDecode() 1035 pAacDecoderChannelInfo->data.usac.lp_coeff[next_frame], in CLpd_TcxDecode() 1036 pAacDecoderChannelInfo->data.usac.lp_coeff_exp[next_frame], pAlfd_gains, in CLpd_TcxDecode()
|