summaryrefslogtreecommitdiff
path: root/kms++util/src/conv-yuv-planar-packed.h
diff options
context:
space:
mode:
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;