Home
last modified time | relevance | path

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

/external/libaom/libaom/av1/encoder/
Dencode_strategy.c47 frame_params->refresh_last_frame = 1; in av1_configure_buffer_updates()
55 frame_params->refresh_last_frame = 1; in av1_configure_buffer_updates()
65 frame_params->refresh_last_frame = 1; in av1_configure_buffer_updates()
73 frame_params->refresh_last_frame = 0; in av1_configure_buffer_updates()
83 frame_params->refresh_last_frame = 0; in av1_configure_buffer_updates()
92 frame_params->refresh_last_frame = 1; in av1_configure_buffer_updates()
103 frame_params->refresh_last_frame = 0; in av1_configure_buffer_updates()
120 frame_params->refresh_last_frame = cpi->ext_refresh_last_frame; in av1_configure_buffer_updates()
128 frame_params->refresh_last_frame = 1; in av1_configure_buffer_updates()
159 cpi->refresh_last_frame); in is_frame_droppable()
Dencoder.h767 int refresh_last_frame; member
1028 int refresh_last_frame; member
Dencoder.c2451 cpi->refresh_last_frame = 1; in av1_change_config()
5199 cpi->refresh_last_frame = frame_params->refresh_last_frame; in av1_encode()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_denoiser.c468 int refresh_last_frame, int alt_fb_idx, int gld_fb_idx, int lst_fb_idx, in vp9_denoiser_update_frame_info() argument
496 if ((refresh_alt_ref_frame + refresh_golden_frame + refresh_last_frame) > in vp9_denoiser_update_frame_info()
506 if (refresh_last_frame) { in vp9_denoiser_update_frame_info()
519 if (refresh_last_frame) { in vp9_denoiser_update_frame_info()
810 cpi->refresh_last_frame, cpi->alt_fb_idx, in vp9_denoiser_update_ref_frame()
818 cpi->refresh_last_frame, cpi->alt_fb_idx, cpi->gld_fb_idx, in vp9_denoiser_update_ref_frame()
Dvp9_denoiser.h76 int refresh_last_frame, int alt_fb_idx, int gld_fb_idx, int lst_fb_idx,
Dvp9_svc_layercontext.c711 if ((ref == svc->lst_fb_idx[sl] && cpi->refresh_last_frame) || in vp9_copy_flags_ref_update_idx()
718 svc->update_last[sl] = (uint8_t)cpi->refresh_last_frame; in vp9_copy_flags_ref_update_idx()
1161 if ((cpi->ref_frame_flags & VP9_LAST_FLAG) || cpi->refresh_last_frame) in vp9_svc_update_ref_frame_buffer_idx()
1207 if (cpi->refresh_last_frame) { in vp9_svc_update_ref_frame()
Dvp9_ratectrl.c1571 cpi->refresh_last_frame = 1; in vp9_configure_buffer_updates()
1576 cpi->refresh_last_frame = 1; in vp9_configure_buffer_updates()
1581 cpi->refresh_last_frame = 1; in vp9_configure_buffer_updates()
1586 cpi->refresh_last_frame = 0; in vp9_configure_buffer_updates()
1592 cpi->refresh_last_frame = 1; in vp9_configure_buffer_updates()
1598 cpi->refresh_last_frame = 0; in vp9_configure_buffer_updates()
1607 cpi->refresh_last_frame = 0; in vp9_configure_buffer_updates()
Dvp9_encoder.c1926 cpi->refresh_last_frame = 1; in vp9_change_config()
3063 if (cpi->refresh_last_frame) {
3093 (cm->frame_type == KEY_FRAME || cpi->refresh_last_frame ||
3257 refresh[0] = (cpi->refresh_last_frame) ? 1 : 0;
3395 cpi->refresh_last_frame, cpi->refresh_golden_frame,
4379 cpi->refresh_last_frame = cpi->ext_refresh_last_frame;
4821 if (cm->frame_type == KEY_FRAME) cpi->refresh_last_frame = 1;
4851 if (cpi->refresh_last_frame)
5081 return cm->frame_type == KEY_FRAME || cpi->refresh_last_frame ||
5163 cpi->refresh_last_frame = 0;
[all …]
Dvp9_encoder.h610 int refresh_last_frame; member
Dvp9_bitstream.c909 return (cpi->refresh_last_frame << cpi->lst_fb_idx) | in vp9_get_refresh_mask()
931 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.c1338 cm->refresh_last_frame = 1; in init_config()
2405 cpi->common.refresh_last_frame = 0; in vp8_update_reference()
2407 if (ref_frame_flags & VP8_LAST_FRAME) cpi->common.refresh_last_frame = 1; in vp8_update_reference()
2939 if (cm->refresh_last_frame) { in update_reference_frames()
2969 if (cm->refresh_last_frame) { in update_reference_frames()
3136 if (cpi->common.refresh_last_frame == 0 && in vp8_loopfilter_frame()
4330 if (cm->frame_type == KEY_FRAME) cm->refresh_last_frame = 1; in encode_frame_to_data_rate()
4663 if (cm->refresh_last_frame & cm->refresh_golden_frame) { /* both refreshed */ in encode_frame_to_data_rate()
4665 } else if (cm->refresh_last_frame ^ cm->refresh_golden_frame) { in encode_frame_to_data_rate()
4670 if (cm->refresh_last_frame & cm->refresh_alt_ref_frame) { /* both refreshed */ in encode_frame_to_data_rate()
[all …]
Dbitstream.c1233 if (pc->frame_type != KEY_FRAME) vp8_write_bit(bc, pc->refresh_last_frame); in vp8_pack_bitstream()
/external/libvpx/libvpx/vp8/decoder/
Ddecodeframe.c1164 pc->refresh_last_frame = pc->frame_type == KEY_FRAME || vp8_read_bit(bc); in vp8_decode_frame()
1169 if (pbi->ec_active && xd->corrupted) pc->refresh_last_frame = 1; in vp8_decode_frame()
1176 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.c628 pbi->common.refresh_last_frame * (int)VP8_LAST_FRAME; in vp8_get_last_ref_updates()