summaryrefslogtreecommitdiff
path: root/libavformat/caf.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2011-04-23 10:41:44 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-04-23 10:41:44 +0200
commitab1572609f58b718d77df0bd769ec2315ea6d09e (patch)
tree1b33c39bedccfcdab4dc0a9b1d154fc95d17b2d3 /libavformat/caf.c
parent8f2e438e52d4a6cd138968df18cd9e54d7f6394f (diff)
10l: Add misssing CR/LF.
Diffstat (limited to 'libavformat/caf.c')
-rw-r--r--libavformat/caf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/caf.c b/libavformat/caf.c
index d661406657..10daeda9fe 100644
--- a/libavformat/caf.c
+++ b/libavformat/caf.c
@@ -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);
}