diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-04-13 12:02:54 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-04-13 12:02:54 +0000 |
commit | 24ba15b16e1970fd6af7b3f6ae11e4840c6e3029 (patch) | |
tree | da68f4fea5daf275a19465d0d04f0c14f3f21a65 /libavcodec/tiffenc.c | |
parent | a74008a4c3b23707e610db0b2f042c2c8347b08f (diff) | |
download | ffmpeg-24ba15b16e1970fd6af7b3f6ae11e4840c6e3029.tar.gz |
cosmetics: Fix indentation.
Originally committed as revision 8726 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/tiffenc.c')
-rw-r--r-- | libavcodec/tiffenc.c | 4 |
1 files 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); |