From c847f5d72d0ebc93dde3bc9caef166f8323fc6e2 Mon Sep 17 00:00:00 2001 From: Ynse Hoornenborg Date: Sun, 17 Mar 2024 13:48:02 +0100 Subject: [PATCH] Fix build --- src/ImageSharp/Formats/Heif/HeifDecoderCore.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ImageSharp/Formats/Heif/HeifDecoderCore.cs b/src/ImageSharp/Formats/Heif/HeifDecoderCore.cs index 79b65a296d..5201793606 100644 --- a/src/ImageSharp/Formats/Heif/HeifDecoderCore.cs +++ b/src/ImageSharp/Formats/Heif/HeifDecoderCore.cs @@ -623,6 +623,7 @@ internal sealed class HeifDecoderCore : IImageDecoderInternals where TPixel : unmanaged, IPixel { EnsureBoxBoundary(boxLength, stream); + // FIXME: No specific decoding yet, so parse only a JPEG thumbnail. HeifItemLink? thumbLink = this.itemLinks.FirstOrDefault(link => link.Type == Heif4CharCode.Thmb); if (thumbLink == null)