Home
last modified time | relevance | path

Searched refs:refresh_last_frame (Results 1 – 12 of 12) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_denoiser.c425 int refresh_alt_ref_frame, int refresh_golden_frame, int refresh_last_frame, in vp9_denoiser_update_frame_info() argument
441 if ((refresh_alt_ref_frame + refresh_golden_frame + refresh_last_frame) > 1) { in vp9_denoiser_update_frame_info()
450 if (refresh_last_frame) { in vp9_denoiser_update_frame_info()
463 if (refresh_last_frame) { in vp9_denoiser_update_frame_info()
Dvp9_denoiser.h63 int refresh_alt_ref_frame, int refresh_golden_frame, int refresh_last_frame,
Dvp9_encoder.c1836 cpi->refresh_last_frame = 1; in vp9_change_config()
2905 if (cpi->refresh_last_frame) {
2927 cpi->refresh_last_frame, cpi->resize_pending, svc_base_is_key);
2938 if (cpi->refresh_last_frame)
2953 (cm->frame_type == KEY_FRAME || cpi->refresh_last_frame ||
3108 refresh[0] = (cpi->refresh_last_frame) ? 1 : 0;
3227 cpi->refresh_last_frame, cpi->refresh_golden_frame,
4031 cpi->refresh_last_frame = cpi->ext_refresh_last_frame;
4479 if (cm->frame_type == KEY_FRAME) cpi->refresh_last_frame = 1;
4696 return cm->frame_type == KEY_FRAME || cpi->refresh_last_frame ||
[all …]
Dvp9_firstpass.c3000 cpi->refresh_last_frame = 1; in configure_buffer_updates()
3005 cpi->refresh_last_frame = 1; in configure_buffer_updates()
3010 cpi->refresh_last_frame = 1; in configure_buffer_updates()
3015 cpi->refresh_last_frame = 0; in configure_buffer_updates()
3021 cpi->refresh_last_frame = 0; in configure_buffer_updates()
3029 cpi->refresh_last_frame = 0; in configure_buffer_updates()
Dvp9_encoder.h482 int refresh_last_frame; member
Dvp9_bitstream.c908 return (cpi->refresh_last_frame << cpi->lst_fb_idx) | in vp9_get_refresh_mask()
916 return (cpi->refresh_last_frame << cpi->lst_fb_idx) | in vp9_get_refresh_mask()
/external/libvpx/libvpx/vp8/common/
Donyxc_int.h136 int refresh_last_frame; /* Two state 0 = NO, 1 = YES */ member
/external/libvpx/libvpx/vp8/encoder/
Donyx_if.c1317 cm->refresh_last_frame = 1; in init_config()
2420 cpi->common.refresh_last_frame = 0; in vp8_update_reference()
2422 if (ref_frame_flags & VP8_LAST_FRAME) cpi->common.refresh_last_frame = 1; in vp8_update_reference()
2986 if (cm->refresh_last_frame) { in update_reference_frames()
3017 if (cm->refresh_last_frame) { in update_reference_frames()
3184 if (cpi->common.refresh_last_frame == 0 && in vp8_loopfilter_frame()
4371 if (cm->frame_type == KEY_FRAME) cm->refresh_last_frame = 1; in encode_frame_to_data_rate()
4701 if (cm->refresh_last_frame & cm->refresh_golden_frame) { /* both refreshed */ in encode_frame_to_data_rate()
4703 } else if (cm->refresh_last_frame ^ cm->refresh_golden_frame) { in encode_frame_to_data_rate()
4708 if (cm->refresh_last_frame & cm->refresh_alt_ref_frame) { /* both refreshed */ in encode_frame_to_data_rate()
[all …]
Dbitstream.c1288 if (pc->frame_type != KEY_FRAME) vp8_write_bit(bc, pc->refresh_last_frame); in vp8_pack_bitstream()
/external/libvpx/libvpx/vp8/decoder/
Ddecodeframe.c1146 pc->refresh_last_frame = pc->frame_type == KEY_FRAME || vp8_read_bit(bc); in vp8_decode_frame()
1151 if (pbi->ec_active && xd->corrupted) pc->refresh_last_frame = 1; in vp8_decode_frame()
1158 pc->refresh_last_frame, pc->base_qindex); in vp8_decode_frame()
Donyxd_if.c257 if (cm->refresh_last_frame) { in swap_frame_buffers()
/external/libvpx/libvpx/vp8/
Dvp8_dx_iface.c575 pbi->common.refresh_last_frame * (int)VP8_LAST_FRAME; in vp8_get_last_ref_updates()