mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
10l: Add misssing CR/LF.
This commit is contained in:
parent
8f2e438e52
commit
ab1572609f
@ -92,7 +92,7 @@ void ff_read_chan_chunk(AVFormatContext *s, int64_t size, AVCodecContext *codec)
|
||||
const CafChannelLayout *caf_layout = caf_channel_layout;
|
||||
if (size != 12) {
|
||||
// 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);
|
||||
return;
|
||||
}
|
||||
@ -110,7 +110,7 @@ void ff_read_chan_chunk(AVFormatContext *s, int64_t size, AVCodecContext *codec)
|
||||
caf_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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user