[FFmpeg-devel] [PATCH] libx264: list possible profiles.

Nicolas George nicolas.george at normalesup.org
Sat Jul 28 18:33:30 CEST 2012


The values are listed if setting them fails.
Using "-profile help" or "-profile list" have that effect.
Similar to 3aba391.
Suggested by "rogerdpack" in trac ticket #1529.

Signed-off-by: Nicolas George <nicolas.george at normalesup.org>
---
 libavcodec/libx264.c |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c
index dd74081..84e4935 100644
--- a/libavcodec/libx264.c
+++ b/libavcodec/libx264.c
@@ -447,7 +447,12 @@ static av_cold int X264_init(AVCodecContext *avctx)
 
     if (x4->profile)
         if (x264_param_apply_profile(&x4->params, x4->profile) < 0) {
+            int i;
             av_log(avctx, AV_LOG_ERROR, "Error setting profile %s.\n", x4->profile);
+            av_log(avctx, AV_LOG_INFO, "Possible profiles:");
+            for (i = 0; x264_profile_names[i]; i++)
+                av_log(avctx, AV_LOG_INFO, " %s", x264_preset_names[i]);
+            av_log(avctx, AV_LOG_INFO, "\n");
             return AVERROR(EINVAL);
         }
 
-- 
1.7.10.4



More information about the ffmpeg-devel mailing list