Signed-off-by: hwren <hwr...@126.com> --- libavcodec/libxavs2.c | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-)
diff --git a/libavcodec/libxavs2.c b/libavcodec/libxavs2.c index 2b47d0c..a3cd588 100644 --- a/libavcodec/libxavs2.c +++ b/libavcodec/libxavs2.c @@ -78,16 +78,14 @@ static av_cold int xavs2_init(AVCodecContext *avctx) return AVERROR(ENOMEM); } - xavs2_opt_set2("width", "%d", avctx->width); - xavs2_opt_set2("height", "%d", avctx->height); - xavs2_opt_set2("bframes", "%d", avctx->max_b_frames); - xavs2_opt_set2("bitdepth", "%d", bit_depth); - xavs2_opt_set2("log", "%d", cae->log_level); - xavs2_opt_set2("preset", "%d", cae->preset_level); - - /* not the same parameter as the IntraPeriod in xavs2 log */ - xavs2_opt_set2("intraperiod", "%d", avctx->gop_size); - + xavs2_opt_set2("Width", "%d", avctx->width); + xavs2_opt_set2("Height", "%d", avctx->height); + xavs2_opt_set2("BFrames", "%d", avctx->max_b_frames); + xavs2_opt_set2("BitDepth", "%d", bit_depth); + xavs2_opt_set2("Log", "%d", cae->log_level); + xavs2_opt_set2("Preset", "%d", cae->preset_level); + + xavs2_opt_set2("IntraPeriodMax", "%d", avctx->gop_size); xavs2_opt_set2("thread_frames", "%d", avctx->thread_count); xavs2_opt_set2("thread_rows", "%d", cae->lcu_row_threads); -- 2.7.4 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel