Skip to content

Commit

Permalink
Fix keyframe logic for use_fast_part_feature for svc
Browse files Browse the repository at this point in the history
This CL also fixes an issue with spatial layers
on key frames for the rtc_sf->use_fast_fixed_part feature:
avoid entering the fixed partition for layers whose base
is key frame.

Change-Id: I2adc953d8ac6467a7b5dd47b75f1a418b7f32006
(cherry picked from commit a30448b)
  • Loading branch information
marco99zz authored and jeromejj committed Apr 9, 2024
1 parent 7be86ea commit aca9261
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion av1/encoder/encodeframe.c
Expand Up @@ -537,7 +537,9 @@ static AOM_INLINE void encode_nonrd_sb(AV1_COMP *cpi, ThreadData *td,
// Set the partition
if (sf->part_sf.partition_search_type == FIXED_PARTITION || seg_skip ||
(sf->rt_sf.use_fast_fixed_part && x->sb_force_fixed_part == 1 &&
!frame_is_intra_only(cm))) {
(!frame_is_intra_only(cm) &&
(!cpi->ppi->use_svc ||
!cpi->svc.layer_context[cpi->svc.temporal_layer_id].is_key_frame)))) {
// set a fixed-size partition
av1_set_offsets(cpi, tile_info, x, mi_row, mi_col, sb_size);
BLOCK_SIZE bsize_select = sf->part_sf.fixed_partition_size;
Expand Down

0 comments on commit aca9261

Please sign in to comment.