Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-12-16 17:02:58 +0400
committerPaul B Mahol <onemda@gmail.com>2012-12-16 17:04:17 +0400
commit5be38f9421da8a50502e8021191fa180193765ec (patch)
treeaf8110f377050bd6a2dcd4ced8b309ed3e1bb105 /libavformat/brstm.c
parent5b09c3407e17fa971fa2bc01e37f31af8d35b726 (diff)
brstm: add missing new line to request for sample messages
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat/brstm.c')
-rw-r--r--libavformat/brstm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/brstm.c b/libavformat/brstm.c
index 80f73ed0bd..3f7117f8e8 100644
--- a/libavformat/brstm.c
+++ b/libavformat/brstm.c
@@ -75,7 +75,7 @@ static int read_header(AVFormatContext *s)
return AVERROR_INVALIDDATA;
}
if (bom == 0xFFFE) {
- av_log_ask_for_sample(s, "unsupported byte order");
+ av_log_ask_for_sample(s, "unsupported byte order\n");
return AVERROR_PATCHWELCOME;
}
@@ -110,7 +110,7 @@ static int read_header(AVFormatContext *s)
case 1: codec = AV_CODEC_ID_PCM_S16BE_PLANAR; break;
case 2: codec = AV_CODEC_ID_ADPCM_THP; break;
default:
- av_log_ask_for_sample(s, "unsupported codec: %d", codec);
+ av_log_ask_for_sample(s, "unsupported codec: %d\n", codec);
return AVERROR_PATCHWELCOME;
}