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

10l: Add misssing CR/LF.

parent 8f2e438e
...@@ -92,7 +92,7 @@ void ff_read_chan_chunk(AVFormatContext *s, int64_t size, AVCodecContext *codec) ...@@ -92,7 +92,7 @@ void ff_read_chan_chunk(AVFormatContext *s, int64_t size, AVCodecContext *codec)
const CafChannelLayout *caf_layout = caf_channel_layout; const CafChannelLayout *caf_layout = caf_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."); av_log_ask_for_sample(s, "Unimplemented channel layout.\n");
avio_skip(pb, size); avio_skip(pb, size);
return; return;
} }
...@@ -110,7 +110,7 @@ void ff_read_chan_chunk(AVFormatContext *s, int64_t size, AVCodecContext *codec) ...@@ -110,7 +110,7 @@ void ff_read_chan_chunk(AVFormatContext *s, int64_t size, AVCodecContext *codec)
caf_layout++; caf_layout++;
} }
if (!codec->channel_layout) if (!codec->channel_layout)
av_log(s, AV_LOG_WARNING, "Unknown channel layout."); av_log(s, AV_LOG_WARNING, "Unknown 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