Commit dcf008af authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Clarify warning messages.

parent 91b78272
...@@ -458,7 +458,7 @@ void ff_mov_read_chan(AVFormatContext *s, int64_t size, AVCodecContext *codec) ...@@ -458,7 +458,7 @@ void ff_mov_read_chan(AVFormatContext *s, int64_t size, AVCodecContext *codec)
const MovChannelLayout *layouts = mov_channel_layout; const MovChannelLayout *layouts = mov_channel_layout;
if (size != 12) { if (size != 12) {
// Channel descriptions not implemented // 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); avio_skip(pb, size);
return; return;
} }
...@@ -476,7 +476,7 @@ void ff_mov_read_chan(AVFormatContext *s, int64_t size, AVCodecContext *codec) ...@@ -476,7 +476,7 @@ void ff_mov_read_chan(AVFormatContext *s, int64_t size, AVCodecContext *codec)
layouts++; layouts++;
} }
if (!codec->channel_layout) 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); avio_skip(pb, 8);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment