From dcf008af34bba5152aa0f0e515a558f9da76484b Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Thu, 28 Apr 2011 10:47:00 +0200 Subject: [PATCH] Clarify warning messages. --- libavformat/isom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/isom.c b/libavformat/isom.c index 6ab996c45b..76a7082148 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -458,7 +458,7 @@ void ff_mov_read_chan(AVFormatContext *s, int64_t size, AVCodecContext *codec) const MovChannelLayout *layouts = mov_channel_layout; if (size != 12) { // Channel descriptions not implemented - av_log_ask_for_sample(s, "Unimplemented channel layout.\n"); + av_log_ask_for_sample(s, "Unimplemented container channel layout.\n"); avio_skip(pb, size); return; } @@ -476,7 +476,7 @@ void ff_mov_read_chan(AVFormatContext *s, int64_t size, AVCodecContext *codec) layouts++; } if (!codec->channel_layout) - av_log(s, AV_LOG_WARNING, "Unknown channel layout.\n"); + av_log(s, AV_LOG_WARNING, "Unknown container channel layout.\n"); avio_skip(pb, 8); }