diff options
| author | Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> | 2025-04-22 10:50:46 +0300 |
|---|---|---|
| committer | Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> | 2025-04-22 10:51:48 +0300 |
| commit | 1192380e2dee300be7dabcc42bf716cf8370a500 (patch) | |
| tree | 894e18a16d9e3ec269e709ab9673f04a6a3d9d0f /kms++util/src/conv-yuv-packed.h | |
| parent | 7a4e4cbf5e70cd304b751f9862792e0d6af85eb1 (diff) | |
kms++utils: conv: Compilation fix for clang 15
Diffstat (limited to 'kms++util/src/conv-yuv-packed.h')
| -rw-r--r-- | kms++util/src/conv-yuv-packed.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kms++util/src/conv-yuv-packed.h b/kms++util/src/conv-yuv-packed.h index 3aa01fa..01278ef 100644 --- a/kms++util/src/conv-yuv-packed.h +++ b/kms++util/src/conv-yuv-packed.h @@ -41,8 +41,8 @@ using VYUY_Layout = YUV_Packed_Format<ComponentType::Cr, ComponentType::Y0, template<typename Layout> class YUVPackedWriter { - using Plane = Layout::template plane<0>; - using TStorage = Plane::storage_type; + using Plane = typename Layout::template plane<0>; + using TStorage = typename Plane::storage_type; static constexpr size_t y0_pos = Plane::template find_pos<ComponentType::Y0>(); static constexpr size_t y1_pos = Plane::template find_pos<ComponentType::Y1>(); |
