diff options
author | Andrey Utkin <andrey.krieger.utkin@gmail.com> | 2012-02-12 16:46:46 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-02-12 17:18:24 +0100 |
commit | e3cc61726343a908cf9d286d7b23820caba49e91 (patch) | |
tree | 4c437fbb032b597004b1d1f37f00bfdbd590835c | |
parent | c22e2ec9d1ffe7fd59be2198520b9a746de62e91 (diff) | |
download | ffmpeg-e3cc61726343a908cf9d286d7b23820caba49e91.tar.gz |
lavf: fix aspect ratio mismatch message.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-rw-r--r-- | libavformat/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index e10348df60..33775b9a2b 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); |