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:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2016-12-03 17:40:26 +0300
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2016-12-03 17:40:26 +0300
commita8cb567e559a99c27bd936a81422147cb23e77a6 (patch)
treed6ce768c702948bd529fd56235fc7f6c30b6bcc6 /libavcodec/m101.c
parent6c15618b90e4872e119fb083d31b6fc7661b33bb (diff)
lavc: Remove CR/LF from avpriv_request_sample() calls.
Diffstat (limited to 'libavcodec/m101.c')
-rw-r--r--libavcodec/m101.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/m101.c b/libavcodec/m101.c
index 939d337bff..d2549668fd 100644
--- a/libavcodec/m101.c
+++ b/libavcodec/m101.c
@@ -27,7 +27,7 @@
static av_cold int m101_decode_init(AVCodecContext *avctx)
{
if (avctx->extradata_size < 6*4) {
- avpriv_request_sample(avctx, "Missing or too small extradata (size %d)\n", avctx->extradata_size);
+ avpriv_request_sample(avctx, "Missing or too small extradata (size %d)", avctx->extradata_size);
return AVERROR_INVALIDDATA;
}
@@ -36,7 +36,7 @@ static av_cold int m101_decode_init(AVCodecContext *avctx)
else if (avctx->extradata[2*4] == 8) {
avctx->pix_fmt = AV_PIX_FMT_YUYV422;
} else {
- avpriv_request_sample(avctx, "BPS %d\n", avctx->extradata[2*4]);
+ avpriv_request_sample(avctx, "BPS %d", avctx->extradata[2*4]);
return AVERROR_INVALIDDATA;
}