From 24ba15b16e1970fd6af7b3f6ae11e4840c6e3029 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 13 Apr 2007 12:02:54 +0000 Subject: [PATCH] cosmetics: Fix indentation. Originally committed as revision 8726 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/tiffenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/tiffenc.c b/libavcodec/tiffenc.c index b25d453e41..d7e881dafb 100644 --- a/libavcodec/tiffenc.c +++ b/libavcodec/tiffenc.c @@ -332,8 +332,8 @@ static int encode_frame(AVCodecContext * avctx, unsigned char *buf, j += s->subsampling[1] - 1; } else - memcpy(zbuf + j * bytes_per_row, - p->data[0] + j * p->linesize[0], bytes_per_row); + memcpy(zbuf + j * bytes_per_row, + p->data[0] + j * p->linesize[0], bytes_per_row); zn += bytes_per_row; } n = encode_strip(s, zbuf, ptr, zn, s->compr);