summaryrefslogtreecommitdiff
path: root/vp9/simple_encode.h
diff options
context:
space:
mode:
authorangiebird <angiebird@google.com>2020-02-06 14:53:21 -0800
committerangiebird <angiebird@google.com>2020-02-06 18:10:25 -0800
commita3171b107ae4caa4ad0aa8df6213d9d0144328ca (patch)
treebf26797e9fe6fb56f50661c16114807c5e150114 /vp9/simple_encode.h
parent67377d3833005932e213dd2fcb2bad79ebef31f6 (diff)
downloadlibvpx-a3171b107ae4caa4ad0aa8df6213d9d0144328ca.tar.gz
libvpx-a3171b107ae4caa4ad0aa8df6213d9d0144328ca.tar.bz2
libvpx-a3171b107ae4caa4ad0aa8df6213d9d0144328ca.zip
Sync simple_encode.h
Change-Id: I046b8c65c96e1864813f9a82649dd6b41ba0aa1f
Diffstat (limited to 'vp9/simple_encode.h')
-rw-r--r--vp9/simple_encode.h13
1 files 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<NewMotionvectorComponentCounts> comps;
};
-#define UintArray2D std::vector<std::vector<unsigned int>>
-#define UintArray3D std::vector<std::vector<std::vector<unsigned int>>>
-#define UintArray5D \
- std::vector<std::vector<std::vector<std::vector<std::vector<unsigned int>>>>>
-#define UintArray6D \
- std::vector<std::vector< \
- std::vector<std::vector<std::vector<std::vector<unsigned int>>>>>>
+using UintArray2D = std::vector<std::vector<unsigned int>>;
+using UintArray3D = std::vector<std::vector<std::vector<unsigned int>>>;
+using UintArray5D = std::vector<
+ std::vector<std::vector<std::vector<std::vector<unsigned int>>>>>;
+using UintArray6D = std::vector<std::vector<
+ std::vector<std::vector<std::vector<std::vector<unsigned int>>>>>>;
// This structure is a copy of vp9 |tx_counts|.
struct TransformSizeCounts {