Commit 80f3470f for libheif

commit 80f3470f3325031f2375dd844dcb14d0b2bb3635
Author: Dirk Farin <dirk.farin@gmail.com>
Date:   Mon Dec 15 19:26:56 2025 +0100

    resolve compilation when uncompressed-codec is disabled

diff --git a/libheif/sequences/track_visual.cc b/libheif/sequences/track_visual.cc
index 5d4f7499..a64f70dd 100644
--- a/libheif/sequences/track_visual.cc
+++ b/libheif/sequences/track_visual.cc
@@ -142,7 +142,7 @@ bool Track_Visual::has_alpha_channel() const
   }

   // --- special case: 'uncv' with alpha component
-
+#if WITH_UNCOMPRESSED_CODEC
   if (m_stsd) {
     auto sampleEntry = m_stsd->get_sample_entry(0);
     if (sampleEntry) {
@@ -155,6 +155,7 @@ bool Track_Visual::has_alpha_channel() const
       }
     }
   }
+#endif

   return false;
 }