1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-18 15:25:05 +02:00

avcodec/tiff: remove TIFF_LONG special case

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-10-27 13:07:44 +01:00
parent 0aba920d61
commit d5ad4e4a2f

View File

@ -582,11 +582,8 @@ static int tiff_decode_tag(TiffContext *s, AVFrame *frame)
switch (type) {
case TIFF_BYTE:
case TIFF_SHORT:
value = ff_tget(&s->gb, type, s->le);
break;
case TIFF_LONG:
off = ff_tget_long(&s->gb, s->le);
value = off;
value = ff_tget(&s->gb, type, s->le);
break;
case TIFF_STRING:
if (count <= 4) {