[FFmpeg-cvslog] lavf: fix aspect ratio mismatch message.
Andrey Utkin
git at videolan.org
Mon Feb 13 02:28:45 CET 2012
ffmpeg | branch: master | Andrey Utkin <andrey.krieger.utkin at gmail.com> | Sun Feb 12 16:46:46 2012 +0200| [e3cc61726343a908cf9d286d7b23820caba49e91] | committer: Anton Khirnov
lavf: fix aspect ratio mismatch message.
Signed-off-by: Anton Khirnov <anton at khirnov.net>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e3cc61726343a908cf9d286d7b23820caba49e91
---
libavformat/utils.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/utils.c b/libavformat/utils.c
index e10348d..33775b9 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2783,8 +2783,8 @@ int avformat_write_header(AVFormatContext *s, AVDictionary **options)
goto fail;
}
if(av_cmp_q(st->sample_aspect_ratio, st->codec->sample_aspect_ratio)){
- av_log(s, AV_LOG_ERROR, "Aspect ratio mismatch between encoder "
- "(%d/%d) and muxer layer (%d/%d)\n",
+ av_log(s, AV_LOG_ERROR, "Aspect ratio mismatch between muxer "
+ "(%d/%d) and encoder layer (%d/%d)\n",
st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
st->codec->sample_aspect_ratio.num,
st->codec->sample_aspect_ratio.den);
More information about the ffmpeg-cvslog
mailing list