ref: 32b3d2f174f69f1484e024b276aff9226a751d4f
parent: fe432cacf8eb055b11dbfd9d5fe8089830a2f1e3
author: Marco <[email protected]>
date: Wed Mar 29 05:13:56 EDT 2017
vp9: 1 pass SVC: Modify condition for intra-mode search. Temporary override to condition for disallowing intra-search in SVC, since golden (spatial) reference is currently suppressed due to artifact issue. Change-Id: I28ed7fdddc9fcdbcc0a4175a247a3ecc94c11767
--- a/vp9/encoder/vp9_pickmode.c
+++ b/vp9/encoder/vp9_pickmode.c
@@ -2036,6 +2036,13 @@
!(cpi->ref_frame_flags & flag_list[GOLDEN_FRAME]) ||
(!cpi->svc.layer_context[cpi->svc.temporal_layer_id].is_key_frame &&
svc_force_zero_mode[best_ref_frame - 1]);
+#if CONFIG_VP9_TEMPORAL_DENOISING
+ // TODO(marpan): Temporary fix to keep intra prediction on as we currently
+ // disallow golden as the (spatial) reference for SVC with denoising due to
+ // artifact issue, Remove this condition when artifact issue is resolved.
+ if (cpi->use_svc && cpi->oxcf.noise_sensitivity > 0 && denoise_svc_pickmode)
+ perform_intra_pred = 1;
+#endif
inter_mode_thresh = (inter_mode_thresh << 1) + inter_mode_thresh;
}
if (cpi->oxcf.lag_in_frames > 0 && cpi->oxcf.rc_mode == VPX_VBR &&