diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-08-11 22:50:45 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-08-11 22:50:45 +0200 |
commit | daf2c35f52e0193b7fc39fc954767bcbc1b52a39 (patch) | |
tree | 7802020e29cc86e6b9348fb06838b658cfc324d7 /libavcodec/lcldec.c | |
parent | f0708b751f4f24a1a5f67ee6540c01edceff51b9 (diff) | |
download | ffmpeg-daf2c35f52e0193b7fc39fc954767bcbc1b52a39.tar.gz |
lavc: Remove newline from avpriv_request_sample() calls.
Diffstat (limited to 'libavcodec/lcldec.c')
-rw-r--r-- | libavcodec/lcldec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/lcldec.c b/libavcodec/lcldec.c index a774832434..c04ed5e6ca 100644 --- a/libavcodec/lcldec.c +++ b/libavcodec/lcldec.c @@ -512,7 +512,7 @@ static av_cold int decode_init(AVCodecContext *avctx) avctx->pix_fmt = AV_PIX_FMT_YUV422P; av_log(avctx, AV_LOG_DEBUG, "Image type is YUV 4:2:2.\n"); if (avctx->width % 4) { - avpriv_request_sample(avctx, "Unsupported dimensions\n"); + avpriv_request_sample(avctx, "Unsupported dimensions"); return AVERROR_INVALIDDATA; } break; @@ -547,7 +547,7 @@ static av_cold int decode_init(AVCodecContext *avctx) av_pix_fmt_get_chroma_sub_sample(avctx->pix_fmt, &subsample_h, &subsample_v); if (avctx->width % (1<<subsample_h) || avctx->height % (1<<subsample_v)) { - avpriv_request_sample(avctx, "Unsupported dimensions\n"); + avpriv_request_sample(avctx, "Unsupported dimensions"); return AVERROR_INVALIDDATA; } |