diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c
index ee2627c8e8ecc2f5c2b0a2f819cab14727917a55..954e40f0a22b892390f70132fb32c0afe1101cee 100644
--- a/libavcodec/tiff.c
+++ b/libavcodec/tiff.c
@@ -282,6 +282,10 @@ static int tiff_decode_tag(TiffContext *s, uint8_t *start, uint8_t *buf, uint8_t
         case TIFF_CCITT_RLE:
             av_log(s->avctx, AV_LOG_ERROR, "CCITT RLE compression is not supported\n");
             return -1;
+        case TIFF_JPEG:
+        case TIFF_NEWJPEG:
+            av_log(s->avctx, AV_LOG_ERROR, "JPEG compression is not supported\n");
+            return -1;
         default:
             av_log(s->avctx, AV_LOG_ERROR, "Unknown compression method %i\n", s->compr);
             return -1;