Home
last modified time | relevance | path

Searched refs:ref_frame_flags (Results 1 – 14 of 14) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Drdopt.h98 if (cpi->ref_frame_flags & VP8_LAST_FRAME) in get_predictor_pointers()
102 if (cpi->ref_frame_flags & VP8_GOLD_FRAME) in get_predictor_pointers()
106 if (cpi->ref_frame_flags & VP8_ALTR_FRAME) in get_predictor_pointers()
118 if (cpi->ref_frame_flags & VP8_LAST_FRAME) in get_reference_search_order()
120 if (cpi->ref_frame_flags & VP8_GOLD_FRAME) in get_reference_search_order()
122 if (cpi->ref_frame_flags & VP8_ALTR_FRAME) in get_reference_search_order()
Donyx_if.c798 if (cpi->ref_frame_flags & VP8_LAST_FRAME) in vp8_set_speed_features()
800 if (cpi->ref_frame_flags & VP8_GOLD_FRAME) in vp8_set_speed_features()
802 if (cpi->ref_frame_flags & VP8_ALTR_FRAME) in vp8_set_speed_features()
846 (cpi->ref_frame_flags & VP8_LAST_FRAME) && in vp8_set_speed_features()
847 (cpi->ref_frame_flags & VP8_GOLD_FRAME)) { in vp8_set_speed_features()
1386 cpi->ref_frame_flags = VP8_ALTR_FRAME | VP8_GOLD_FRAME | VP8_LAST_FRAME; in init_config()
2612 int vp8_use_as_reference(VP8_COMP *cpi, int ref_frame_flags) in vp8_use_as_reference() argument
2614 if (ref_frame_flags > 7) in vp8_use_as_reference()
2617 cpi->ref_frame_flags = ref_frame_flags; in vp8_use_as_reference()
2620 int vp8_update_reference(VP8_COMP *cpi, int ref_frame_flags) in vp8_update_reference() argument
[all …]
Dencodeframe.c674 if (cpi->ref_frame_flags == VP8_LAST_FRAME) in init_encode_frame_mb_context()
678 (cpi->ref_frame_flags == VP8_GOLD_FRAME)) in init_encode_frame_mb_context()
682 (cpi->ref_frame_flags == VP8_ALTR_FRAME)) in init_encode_frame_mb_context()
Donyx_int.h490 int ref_frame_flags; member
Dpickinter.c732 if (cpi->ref_frame_flags & VP8_LAST_FRAME) { in vp8_pick_inter_mode()
798 parent_ref_flag = (cpi->ref_frame_flags & VP8_LAST_FRAME); in vp8_pick_inter_mode()
800 parent_ref_flag = (cpi->ref_frame_flags & VP8_GOLD_FRAME); in vp8_pick_inter_mode()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_svc_layercontext.c402 cpi->ref_frame_flags = VP9_LAST_FLAG; in set_flags_and_fb_idx_for_temporal_mode3()
405 cpi->ref_frame_flags = VP9_GOLD_FLAG; in set_flags_and_fb_idx_for_temporal_mode3()
407 cpi->ref_frame_flags = VP9_LAST_FLAG | VP9_GOLD_FLAG; in set_flags_and_fb_idx_for_temporal_mode3()
413 cpi->ref_frame_flags = VP9_LAST_FLAG; in set_flags_and_fb_idx_for_temporal_mode3()
415 cpi->ref_frame_flags = VP9_LAST_FLAG | VP9_GOLD_FLAG; in set_flags_and_fb_idx_for_temporal_mode3()
423 cpi->ref_frame_flags = VP9_LAST_FLAG; in set_flags_and_fb_idx_for_temporal_mode3()
427 cpi->ref_frame_flags = VP9_LAST_FLAG | VP9_GOLD_FLAG; in set_flags_and_fb_idx_for_temporal_mode3()
430 cpi->ref_frame_flags = VP9_LAST_FLAG | VP9_GOLD_FLAG; in set_flags_and_fb_idx_for_temporal_mode3()
436 cpi->ref_frame_flags = VP9_LAST_FLAG; in set_flags_and_fb_idx_for_temporal_mode3()
440 cpi->ref_frame_flags = VP9_LAST_FLAG | VP9_GOLD_FLAG; in set_flags_and_fb_idx_for_temporal_mode3()
[all …]
Dvp9_encoder.h366 int ref_frame_flags; member
529 int vp9_use_as_reference(VP9_COMP *cpi, int ref_frame_flags);
531 void vp9_update_reference(VP9_COMP *cpi, int ref_frame_flags);
Dvp9_firstpass.c562 cpi->ref_frame_flags = VP9_LAST_FLAG; in vp9_first_pass()
568 cpi->ref_frame_flags |= VP9_GOLD_FLAG; in vp9_first_pass()
575 cpi->ref_frame_flags = 0; in vp9_first_pass()
580 if (cpi->ref_frame_flags & VP9_LAST_FLAG) { in vp9_first_pass()
586 if (cpi->ref_frame_flags & VP9_GOLD_FLAG) { in vp9_first_pass()
596 (cpi->ref_frame_flags & VP9_LAST_FLAG) ? LAST_FRAME: NONE, in vp9_first_pass()
597 (cpi->ref_frame_flags & VP9_GOLD_FLAG) ? GOLDEN_FRAME : NONE); in vp9_first_pass()
2624 cpi->ref_frame_flags &= (~VP9_LAST_FLAG); in vp9_rc_get_second_pass_params()
2694 cpi->ref_frame_flags &= in vp9_rc_get_second_pass_params()
2705 cpi->ref_frame_flags &= (~VP9_LAST_FLAG); in vp9_rc_get_second_pass_params()
Dvp9_encoder.c805 cpi->ref_frame_flags = 0; in init_config()
2384 int vp9_use_as_reference(VP9_COMP *cpi, int ref_frame_flags) { in vp9_use_as_reference() argument
2385 if (ref_frame_flags > 7) in vp9_use_as_reference()
2388 cpi->ref_frame_flags = ref_frame_flags; in vp9_use_as_reference()
2392 void vp9_update_reference(VP9_COMP *cpi, int ref_frame_flags) { in vp9_update_reference() argument
2393 cpi->ext_refresh_golden_frame = (ref_frame_flags & VP9_GOLD_FLAG) != 0; in vp9_update_reference()
2394 cpi->ext_refresh_alt_ref_frame = (ref_frame_flags & VP9_ALT_FLAG) != 0; in vp9_update_reference()
2395 cpi->ext_refresh_last_frame = (ref_frame_flags & VP9_LAST_FLAG) != 0; in vp9_update_reference()
2821 if (cpi->ref_frame_flags & ref_mask[ref_frame - 1]) {
3905 cpi->ref_frame_flags = get_ref_frame_flags(cpi);
Dvp9_ratectrl.c1572 cpi->ref_frame_flags &= in vp9_rc_get_svc_params()
1577 cpi->ref_frame_flags &= in vp9_rc_get_svc_params()
1593 cpi->ref_frame_flags &= (~VP9_LAST_FLAG); in vp9_rc_get_svc_params()
1595 cpi->ref_frame_flags &= (~VP9_ALT_FLAG); in vp9_rc_get_svc_params()
Dvp9_pickmode.c1189 if ((cpi->ref_frame_flags & flag_list[ref_frame]) && (yv12 != NULL)) { in vp9_pick_inter_mode()
1236 if (!(cpi->ref_frame_flags & flag_list[ref_frame])) in vp9_pick_inter_mode()
1243 if ((cpi->ref_frame_flags & flag_list[i]) && sf->reference_masking) in vp9_pick_inter_mode()
1704 if ((cpi->ref_frame_flags & flag_list[ref_frame]) && (yv12 != NULL)) { in vp9_pick_inter_mode_sub8x8()
Dvp9_rdopt.c3029 if (cpi->ref_frame_flags & flag_list[ref_frame]) { in vp9_rd_pick_inter_mode_sb()
3039 if (!(cpi->ref_frame_flags & flag_list[ref_frame])) { in vp9_rd_pick_inter_mode_sb()
3239 if (!(cpi->ref_frame_flags & flag_list[second_ref_frame])) in vp9_rd_pick_inter_mode_sb()
3795 if (cpi->ref_frame_flags & flag_list[ref_frame]) { in vp9_rd_pick_inter_mode_sub8x8()
3865 if (!(cpi->ref_frame_flags & flag_list[second_ref_frame])) in vp9_rd_pick_inter_mode_sub8x8()
Dvp9_encodeframe.c722 (cpi->ref_frame_flags & VP9_GOLD_FLAG)) { in choose_partitioning()
2876 const int ref_flags = cpi->ref_frame_flags; in check_dual_ref_flags()
3949 cpi->ref_frame_flags &= (~VP9_GOLD_FLAG); in encode_frame_internal()
/external/libvpx/libvpx/vp8/common/
Donyx.h268 int vp8_use_as_reference(struct VP8_COMP* comp, int ref_frame_flags);
269 int vp8_update_reference(struct VP8_COMP* comp, int ref_frame_flags);