[FFmpeg-cvslog] Clarify warning messages.

Carl Eugen Hoyos git at videolan.org
Thu Apr 28 10:52:38 CEST 2011


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Thu Apr 28 10:47:00 2011 +0200| [dcf008af34bba5152aa0f0e515a558f9da76484b] | committer: Carl Eugen Hoyos

Clarify warning messages.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dcf008af34bba5152aa0f0e515a558f9da76484b
---

 libavformat/isom.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavformat/isom.c b/libavformat/isom.c
index 6ab996c..76a7082 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);
 }
 



More information about the ffmpeg-cvslog mailing list