summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2011-11-05 11:30:16 +0100
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2011-11-05 11:30:46 +0100
commitaddc64f7f98432eb6a692c2a48ed23a13ae85f52 (patch)
tree6fecb716871c78adbec8fa54fd8852d454683406 /ffmpeg.c
parent5639793be90b1681e200b290fd93802dbcf84881 (diff)
Fix typo in warning message.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index ace4d70ce2..24deeee0a1 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -720,7 +720,7 @@ static void choose_sample_fmt(AVStream *st, AVCodec *codec)
}
if (*p == -1) {
if((codec->capabilities & CODEC_CAP_LOSSLESS) && av_get_sample_fmt_name(st->codec->sample_fmt) > av_get_sample_fmt_name(codec->sample_fmts[0]))
- av_log(NULL, AV_LOG_ERROR, "Convertion will not be lossless'\n");
+ av_log(NULL, AV_LOG_ERROR, "Conversion will not be lossless.\n");
if(av_get_sample_fmt_name(st->codec->sample_fmt))
av_log(NULL, AV_LOG_WARNING,
"Incompatible sample format '%s' for codec '%s', auto-selecting format '%s'\n",