[FFmpeg-cvslog] Fix libx264 profile listing

Mahendra M git at videolan.org
Sat Sep 1 16:03:19 CEST 2012


ffmpeg | branch: master | Mahendra M <mahendra.m at gmail.com> | Sat Sep  1 19:23:44 2012 +0530| [9b4badb09b3fa2f5ea665d94a1cb189df5ded318] | committer: Michael Niedermayer

Fix libx264 profile listing

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9b4badb09b3fa2f5ea665d94a1cb189df5ded318
---

 libavcodec/libx264.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c
index 45fe2ac..6eddf7f 100644
--- a/libavcodec/libx264.c
+++ b/libavcodec/libx264.c
@@ -453,7 +453,7 @@ static av_cold int X264_init(AVCodecContext *avctx)
             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, " %s", x264_profile_names[i]);
             av_log(avctx, AV_LOG_INFO, "\n");
             return AVERROR(EINVAL);
         }



More information about the ffmpeg-cvslog mailing list