aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/isom.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2011-04-28 10:47:00 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-04-28 10:47:00 +0200
commitdcf008af34bba5152aa0f0e515a558f9da76484b (patch)
tree1b10943c568e1d1152324f1c8dc8a5ccb2ff0a9b /libavformat/isom.c
parent91b782720fd0df5571775b6591bc41797d6ecf78 (diff)
downloadffmpeg-dcf008af34bba5152aa0f0e515a558f9da76484b.tar.gz
Clarify warning messages.
Diffstat (limited to 'libavformat/isom.c')
-rw-r--r--libavformat/isom.c4
1 files 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);
}