avcodec/tiff: factorize offset init code

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-10-27 13:10:06 +01:00
parent d5ad4e4a2f
commit 46143d2555
1 changed files with 1 additions and 3 deletions

View File

@ -578,6 +578,7 @@ static int tiff_decode_tag(TiffContext *s, AVFrame *frame)
goto end; goto end;
} }
off = bytestream2_tell(&s->gb);
if (count == 1) { if (count == 1) {
switch (type) { switch (type) {
case TIFF_BYTE: case TIFF_BYTE:
@ -590,11 +591,8 @@ static int tiff_decode_tag(TiffContext *s, AVFrame *frame)
break; break;
} }
default: default:
off = bytestream2_tell(&s->gb);
value = UINT_MAX; value = UINT_MAX;
} }
} else {
off = bytestream2_tell(&s->gb);
} }
switch (tag) { switch (tag) {