diff options
author | James Almer <jamrial@gmail.com> | 2015-04-10 16:47:03 -0300 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2015-04-11 11:13:28 -0400 |
commit | bbdb50d7a8a91f38188fd15080d7f45f1540b3ac (patch) | |
tree | deaec18cf063b56c055f8becd01ba7dec968236a /libavcodec | |
parent | 7a9b764c0737f42cf2458c3c5378b0df216e14a2 (diff) | |
download | ffmpeg-streaming-bbdb50d7a8a91f38188fd15080d7f45f1540b3ac.zip ffmpeg-streaming-bbdb50d7a8a91f38188fd15080d7f45f1540b3ac.tar.gz |
libx265: print supported presets and tunes on error
Based on code from libavcodec/libx264.c
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/libx265.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c index a7089b1..c04299a 100644 --- a/libavcodec/libx265.c +++ b/libavcodec/libx265.c @@ -100,7 +100,20 @@ static av_cold int libx265_encode_init(AVCodecContext *avctx) } if (x265_param_default_preset(ctx->params, ctx->preset, ctx->tune) < 0) { - av_log(avctx, AV_LOG_ERROR, "Invalid preset or tune.\n"); + int i; + + av_log(avctx, AV_LOG_ERROR, "Error setting preset/tune %s/%s.\n", ctx->preset, ctx->tune); + av_log(avctx, AV_LOG_INFO, "Possible presets:"); + for (i = 0; x265_preset_names[i]; i++) + av_log(avctx, AV_LOG_INFO, " %s", x265_preset_names[i]); + + av_log(avctx, AV_LOG_INFO, "\n"); + av_log(avctx, AV_LOG_INFO, "Possible tunes:"); + for (i = 0; x265_tune_names[i]; i++) + av_log(avctx, AV_LOG_INFO, " %s", x265_tune_names[i]); + + av_log(avctx, AV_LOG_INFO, "\n"); + return AVERROR(EINVAL); } |