Skip to content

Commit

Permalink
Merge pull request #1059 from bradh/issue956
Browse files Browse the repository at this point in the history
svt: fix c99 extension warning
  • Loading branch information
farindk authored Dec 15, 2023
2 parents dd5774f + b0bd352 commit e751277
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 e751277

Please sign in to comment.