Commit 1863a3c7 authored by Stefano Sabatini's avatar Stefano Sabatini Committed by Anton Khirnov

tiff: print log in case of unknown / unsupported tag.

Helps debugging.
Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent a43458d7
......@@ -478,6 +478,8 @@ static int tiff_decode_tag(TiffContext *s, const uint8_t *start, const uint8_t *
if(s->compr == TIFF_G4)
s->fax_opts = value;
break;
default:
av_log(s->avctx, AV_LOG_DEBUG, "Unknown or unsupported tag %d/0X%0X\n", tag, tag);
}
return 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