diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-04-28 10:47:00 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-04-28 10:47:00 +0200 |
commit | dcf008af34bba5152aa0f0e515a558f9da76484b (patch) | |
tree | 1b10943c568e1d1152324f1c8dc8a5ccb2ff0a9b /libavformat/isom.c | |
parent | 91b782720fd0df5571775b6591bc41797d6ecf78 (diff) | |
download | ffmpeg-dcf008af34bba5152aa0f0e515a558f9da76484b.tar.gz |
Clarify warning messages.
Diffstat (limited to 'libavformat/isom.c')
-rw-r--r-- | libavformat/isom.c | 4 |
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); } |