diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-13 04:33:20 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-13 04:33:20 +0200 |
commit | 1dc2d4a8efd1d358a9e2bf16652a4baaee609365 (patch) | |
tree | 8591558ec442449497fdd5a8a763c3dc5c70f467 /libavcodec/tiff.c | |
parent | a676e48d394cf9972730859d62f537dfe0a9dce2 (diff) | |
download | ffmpeg-1dc2d4a8efd1d358a9e2bf16652a4baaee609365.tar.gz |
avcodec/tiff: remove unused variables
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/tiff.c')
-rw-r--r-- | libavcodec/tiff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index d864521b36..af1b4e07b6 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -593,7 +593,7 @@ static int tiff_decode_tag(TiffContext *s, AVFrame *frame) { unsigned tag, type, count, off, value = 0, value2 = 0; int i, start; - int j, k, pos; + int pos; int ret; double *dp; |