comparison tiffenc.c @ 4847:1a8865f72b04 libavcodec

cosmetics: Fix indentation.
author diego
date Fri, 13 Apr 2007 12:02:54 +0000
parents 1a5c08c07cfb
children 9e471439d2e8
comparison
equal deleted inserted replaced
4846:841ecebff8c8 4847:1a8865f72b04
330 pack_yuv(s, yuv_line, j); 330 pack_yuv(s, yuv_line, j);
331 memcpy(zbuf + zn, yuv_line, bytes_per_row); 331 memcpy(zbuf + zn, yuv_line, bytes_per_row);
332 j += s->subsampling[1] - 1; 332 j += s->subsampling[1] - 1;
333 } 333 }
334 else 334 else
335 memcpy(zbuf + j * bytes_per_row, 335 memcpy(zbuf + j * bytes_per_row,
336 p->data[0] + j * p->linesize[0], bytes_per_row); 336 p->data[0] + j * p->linesize[0], bytes_per_row);
337 zn += bytes_per_row; 337 zn += bytes_per_row;
338 } 338 }
339 n = encode_strip(s, zbuf, ptr, zn, s->compr); 339 n = encode_strip(s, zbuf, ptr, zn, s->compr);
340 av_free(zbuf); 340 av_free(zbuf);
341 if (n<0) { 341 if (n<0) {