summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_bitstream.h
diff options
context:
space:
mode:
Diffstat (limited to 'vp9/encoder/vp9_bitstream.h')
-rw-r--r--vp9/encoder/vp9_bitstream.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/vp9/encoder/vp9_bitstream.h b/vp9/encoder/vp9_bitstream.h
index 339c3fecb..b296560b9 100644
--- a/vp9/encoder/vp9_bitstream.h
+++ b/vp9/encoder/vp9_bitstream.h
@@ -39,11 +39,7 @@ void vp9_pack_bitstream(VP9_COMP *cpi, uint8_t *dest, size_t *size);
static INLINE int vp9_preserve_existing_gf(VP9_COMP *cpi) {
return !cpi->multi_arf_allowed && cpi->refresh_golden_frame &&
- cpi->rc.is_src_frame_alt_ref &&
- (!cpi->use_svc || // Add spatial svc base layer case here
- (is_two_pass_svc(cpi) && cpi->svc.spatial_layer_id == 0 &&
- cpi->svc.layer_context[0].gold_ref_idx >= 0 &&
- cpi->oxcf.ss_enable_auto_arf[0]));
+ cpi->rc.is_src_frame_alt_ref && !cpi->use_svc;
}
#ifdef __cplusplus