]> granicus.if.org Git - libvpx/blobdiff - test/vp9_denoiser_test.cc
test/*: use std::*tuple
[libvpx] / test / vp9_denoiser_test.cc
index e3a057bffad9990e4a26527a5c4765ebb972e078..47fa587fca73087a3795dd7a9fefd66e08611bae 100644 (file)
@@ -11,6 +11,7 @@
 #include <math.h>
 #include <stdlib.h>
 #include <string.h>
+#include <tuple>
 
 #include "third_party/googletest/src/include/gtest/gtest.h"
 #include "test/acm_random.h"
@@ -35,8 +36,7 @@ typedef int (*Vp9DenoiserFilterFunc)(const uint8_t *sig, int sig_stride,
                                      uint8_t *avg, int avg_stride,
                                      int increase_denoising, BLOCK_SIZE bs,
                                      int motion_magnitude);
-typedef ::testing::tuple<Vp9DenoiserFilterFunc, BLOCK_SIZE>
-    VP9DenoiserTestParam;
+typedef std::tuple<Vp9DenoiserFilterFunc, BLOCK_SIZE> VP9DenoiserTestParam;
 
 class VP9DenoiserTest
     : public ::testing::Test,
@@ -100,7 +100,7 @@ TEST_P(VP9DenoiserTest, BitexactCheck) {
   }
 }
 
-using ::testing::make_tuple;
+using std::make_tuple;
 
 // Test for all block size.
 #if HAVE_SSE2