Skip to content

Commit

Permalink
svt: fix c99 extension warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bradh authored and farindk committed Dec 15, 2023
1 parent c6883e6 commit e4d554a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libheif/plugins/encoder_svt.cc
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ struct heif_error svt_encode_image(void* encoder_raw, const struct heif_image* i
svt_config.logical_processors = encoder->threads;

// disable 2-pass
svt_config.rc_stats_buffer = (SvtAv1FixedBuf) {nullptr, 0};
svt_config.rc_stats_buffer = SvtAv1FixedBuf {nullptr, 0};

svt_config.rate_control_mode = 0; // constant rate factor
//svt_config.enable_adaptive_quantization = 0; // 2 is CRF (the default), 0 would be CQP
Expand Down

0 comments on commit e4d554a

Please sign in to comment.