Commit 6338f1b3 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/tiff: remove byte based bpp special case

This case does not work as off is uninitialized and it should be
handled fine by the generic code below

Fixes CID1108608
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 23d69b15
...@@ -622,9 +622,6 @@ static int tiff_decode_tag(TiffContext *s, AVFrame *frame) ...@@ -622,9 +622,6 @@ static int tiff_decode_tag(TiffContext *s, AVFrame *frame)
else { else {
switch (type) { switch (type) {
case TIFF_BYTE: case TIFF_BYTE:
s->bpp = (off & 0xFF) + ((off >> 8) & 0xFF) +
((off >> 16) & 0xFF) + ((off >> 24) & 0xFF);
break;
case TIFF_SHORT: case TIFF_SHORT:
case TIFF_LONG: case TIFF_LONG:
s->bpp = 0; s->bpp = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment