diff options
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; |
