From 1192380e2dee300be7dabcc42bf716cf8370a500 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Tue, 22 Apr 2025 10:50:46 +0300 Subject: kms++utils: conv: Compilation fix for clang 15 --- kms++util/src/conv-yuv-semiplanar.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kms++util/src/conv-yuv-semiplanar.h') diff --git a/kms++util/src/conv-yuv-semiplanar.h b/kms++util/src/conv-yuv-semiplanar.h index fa7e0cb..3c4eec2 100644 --- a/kms++util/src/conv-yuv-semiplanar.h +++ b/kms++util/src/conv-yuv-semiplanar.h @@ -85,11 +85,11 @@ class YUVSemiPlanarWriter static constexpr size_t h_sub = Layout::h_sub; static constexpr size_t v_sub = Layout::v_sub; - using YLayout = Layout::template plane<0>; - using UVLayout = Layout::template plane<1>; + using YLayout = typename Layout::template plane<0>; + using UVLayout = typename Layout::template plane<1>; - using TY = YLayout::storage_type; - using TCrCb = UVLayout::storage_type; + using TY = typename YLayout::storage_type; + using TCrCb = typename UVLayout::storage_type; static constexpr size_t pixels_in_group = YLayout::template component_count(); static_assert(pixels_in_group == UVLayout::template component_count()); -- cgit v1.2.3