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-planar.h | |
| parent | 7a4e4cbf5e70cd304b751f9862792e0d6af85eb1 (diff) | |
kms++utils: conv: Compilation fix for clang 15
Diffstat (limited to 'kms++util/src/conv-yuv-planar.h')
| -rw-r--r-- | kms++util/src/conv-yuv-planar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kms++util/src/conv-yuv-planar.h b/kms++util/src/conv-yuv-planar.h index 0ece6f7..b8e9247 100644 --- a/kms++util/src/conv-yuv-planar.h +++ b/kms++util/src/conv-yuv-planar.h @@ -45,9 +45,9 @@ using YVU420_Layout = YUV_Planar_Layout<ComponentType::Cr, ComponentType::Cb, 2, template<typename Format> class YUVPlanarWriter { - 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; |
