From a3171b107ae4caa4ad0aa8df6213d9d0144328ca Mon Sep 17 00:00:00 2001 From: angiebird Date: Thu, 6 Feb 2020 14:53:21 -0800 Subject: [PATCH] Sync simple_encode.h Change-Id: I046b8c65c96e1864813f9a82649dd6b41ba0aa1f --- vp9/simple_encode.h | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/vp9/simple_encode.h b/vp9/simple_encode.h index 03c361deb..a47290bbe 100644 --- a/vp9/simple_encode.h +++ b/vp9/simple_encode.h @@ -87,13 +87,12 @@ struct NewMotionVectorContextCounts { std::vector comps; }; -#define UintArray2D std::vector> -#define UintArray3D std::vector>> -#define UintArray5D \ - std::vector>>>> -#define UintArray6D \ - std::vector>>>>> +using UintArray2D = std::vector>; +using UintArray3D = std::vector>>; +using UintArray5D = std::vector< + std::vector>>>>; +using UintArray6D = std::vector>>>>>; // This structure is a copy of vp9 |tx_counts|. struct TransformSizeCounts { -- 2.50.1