diff options
author | Jean First <jeanfirst@gmail.com> | 2011-09-23 08:22:31 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-25 16:43:23 +0200 |
commit | 251345a3fe221d60e9b275567085f9475de68092 (patch) | |
tree | ef4a01b06aa659fc4c735ace3166f12c9c776d1e | |
parent | 1a0770f3f71ac285a314273ead5f08a9c3966c20 (diff) | |
download | ffmpeg-251345a3fe221d60e9b275567085f9475de68092.tar.gz |
cosmetics, remove unused and rename variables for consistency
-rw-r--r-- | libavcodec/tiff.c | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 06b5b8ea78..eeafa8bb6e 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -614,23 +614,20 @@ static int decode_frame(AVCodecContext *avctx, dst += stride; } } else { - for(i = 0; i < s->height; i++) { - for(j = soff; j < ssize; j++) - dst[j] += dst[j - soff]; - dst += stride; - } + for(i = 0; i < s->height; i++) { + for(j = soff; j < ssize; j++) + dst[j] += dst[j - soff]; + dst += stride; + } } } if(s->invert){ - uint8_t *src; - int j; - - src = s->picture.data[0]; - for(j = 0; j < s->height; j++){ - for(i = 0; i < s->picture.linesize[0]; i++) - src[i] = (s->avctx->pix_fmt == PIX_FMT_PAL8 ? (1<<s->bpp) - 1 : 255) - src[i]; - src += s->picture.linesize[0]; + dst = s->picture.data[0]; + for(i = 0; i < s->height; i++){ + for(j = 0; j < s->picture.linesize[0]; j++) + dst[j] = (s->avctx->pix_fmt == PIX_FMT_PAL8 ? (1<<s->bpp) - 1 : 255) - dst[j]; + dst += s->picture.linesize[0]; } } *picture= *(AVFrame*)&s->picture; |