diff options
author | Mahendra M <mahendra.m@gmail.com> | 2012-09-01 19:05:44 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-01 15:59:04 +0200 |
commit | 9b4badb09b3fa2f5ea665d94a1cb189df5ded318 (patch) | |
tree | 5de1ce05f3c387d9b88b4a397c68634c9695d225 /libavcodec/libx264.c | |
parent | 9cdb5969d46da14a4615b876d53b3716ea7f6a39 (diff) | |
download | ffmpeg-9b4badb09b3fa2f5ea665d94a1cb189df5ded318.tar.gz |
Fix libx264 profile listing
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/libx264.c')
-rw-r--r-- | libavcodec/libx264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c index 45fe2acd9d..6eddf7fce7 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); } |