summaryrefslogtreecommitdiff
path: root/kms++util/src/conv-yuv-planar-packed.h
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ideasonboard.com>2025-04-22 10:50:46 +0300
committerTomi Valkeinen <tomi.valkeinen@ideasonboard.com>2025-04-22 10:51:48 +0300
commit1192380e2dee300be7dabcc42bf716cf8370a500 (patch)
tree894e18a16d9e3ec269e709ab9673f04a6a3d9d0f /kms++util/src/conv-yuv-planar-packed.h
parent7a4e4cbf5e70cd304b751f9862792e0d6af85eb1 (diff)
kms++utils: conv: Compilation fix for clang 15
Diffstat (limited to 'kms++util/src/conv-yuv-planar-packed.h')
-rw-r--r--kms++util/src/conv-yuv-planar-packed.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/kms++util/src/conv-yuv-planar-packed.h b/kms++util/src/conv-yuv-planar-packed.h
index b66e593..4475100 100644
--- a/kms++util/src/conv-yuv-planar-packed.h
+++ b/kms++util/src/conv-yuv-planar-packed.h
@@ -38,9 +38,9 @@ struct X403_Layout : FormatLayout <
template<typename Format>
class YUVPlanarPackedWriter
{
- using YLayout = Format::template plane<Format::y_plane>;
- using CbLayout = Format::template plane<Format::cb_plane>;
- using CrLayout = Format::template plane<Format::cr_plane>;
+ using YLayout = typename Format::template plane<Format::y_plane>;
+ using CbLayout = typename Format::template plane<Format::cb_plane>;
+ using CrLayout = typename Format::template plane<Format::cr_plane>;
using TY = typename YLayout::storage_type;
using TCb = typename CbLayout::storage_type;