summaryrefslogtreecommitdiff
path: root/libavcodec/libx264.c
diff options
context:
space:
mode:
authorMahendra M <mahendra.m@gmail.com>2012-09-01 19:05:44 +0530
committerMichael Niedermayer <michaelni@gmx.at>2012-09-01 15:59:04 +0200
commit9b4badb09b3fa2f5ea665d94a1cb189df5ded318 (patch)
tree5de1ce05f3c387d9b88b4a397c68634c9695d225 /libavcodec/libx264.c
parent9cdb5969d46da14a4615b876d53b3716ea7f6a39 (diff)
Fix libx264 profile listing
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/libx264.c')
-rw-r--r--libavcodec/libx264.c2
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);
}