You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/tiff: factorize offset init code
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -578,6 +578,7 @@ static int tiff_decode_tag(TiffContext *s, AVFrame *frame)
|
||||
goto end;
|
||||
}
|
||||
|
||||
off = bytestream2_tell(&s->gb);
|
||||
if (count == 1) {
|
||||
switch (type) {
|
||||
case TIFF_BYTE:
|
||||
@@ -590,11 +591,8 @@ static int tiff_decode_tag(TiffContext *s, AVFrame *frame)
|
||||
break;
|
||||
}
|
||||
default:
|
||||
off = bytestream2_tell(&s->gb);
|
||||
value = UINT_MAX;
|
||||
}
|
||||
} else {
|
||||
off = bytestream2_tell(&s->gb);
|
||||
}
|
||||
|
||||
switch (tag) {
|
||||
|
Reference in New Issue
Block a user