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/c93.c | |
parent | f0708b751f4f24a1a5f67ee6540c01edceff51b9 (diff) | |
download | ffmpeg-daf2c35f52e0193b7fc39fc954767bcbc1b52a39.tar.gz |
lavc: Remove newline from avpriv_request_sample() calls.
Diffstat (limited to 'libavcodec/c93.c')
-rw-r--r-- | libavcodec/c93.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/c93.c b/libavcodec/c93.c index 887a58599b..fd026acb8a 100644 --- a/libavcodec/c93.c +++ b/libavcodec/c93.c @@ -182,7 +182,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int from_y = offset / WIDTH; if (block_type == C93_4X4_FROM_CURR && from_y == y+j && (FFABS(from_x - x-i) < 4 || FFABS(from_x - x-i) > WIDTH-4)) { - avpriv_request_sample(avctx, "block overlap %d %d %d %d\n", from_x, x+i, from_y, y+j); + avpriv_request_sample(avctx, "block overlap %d %d %d %d", from_x, x+i, from_y, y+j); return AVERROR_INVALIDDATA; } if ((ret = copy_block(avctx, &out[j*stride+i], |