Merge "Remove dependency on std::tr1"
am: 9d1c18ddd0

Change-Id: I4fdb2586216d6ce5520bb47bf692a767d40c34a3
diff --git a/webrtc/modules/audio_processing/test/audio_processing_unittest.cc b/webrtc/modules/audio_processing/test/audio_processing_unittest.cc
index 324cb7b..f0855b4 100644
--- a/webrtc/modules/audio_processing/test/audio_processing_unittest.cc
+++ b/webrtc/modules/audio_processing/test/audio_processing_unittest.cc
@@ -2342,18 +2342,18 @@
 // Due to the resampling distortion, we don't expect identical results, but
 // enforce SNR thresholds which vary depending on the format. 0 is a special
 // case SNR which corresponds to inf, or zero error.
-typedef std::tr1::tuple<int, int, int, int, double, double>
+typedef ::testing::tuple<int, int, int, int, double, double>
     AudioProcessingTestData;
 class AudioProcessingTest
     : public testing::TestWithParam<AudioProcessingTestData> {
  public:
   AudioProcessingTest()
-      : input_rate_(std::tr1::get<0>(GetParam())),
-        output_rate_(std::tr1::get<1>(GetParam())),
-        reverse_input_rate_(std::tr1::get<2>(GetParam())),
-        reverse_output_rate_(std::tr1::get<3>(GetParam())),
-        expected_snr_(std::tr1::get<4>(GetParam())),
-        expected_reverse_snr_(std::tr1::get<5>(GetParam())) {}
+      : input_rate_(::testing::get<0>(GetParam())),
+        output_rate_(::testing::get<1>(GetParam())),
+        reverse_input_rate_(::testing::get<2>(GetParam())),
+        reverse_output_rate_(::testing::get<3>(GetParam())),
+        expected_snr_(::testing::get<4>(GetParam())),
+        expected_reverse_snr_(::testing::get<5>(GetParam())) {}
 
   virtual ~AudioProcessingTest() {}
 
@@ -2640,113 +2640,113 @@
 INSTANTIATE_TEST_CASE_P(
     CommonFormats,
     AudioProcessingTest,
-    testing::Values(std::tr1::make_tuple(48000, 48000, 48000, 48000, 0, 0),
-                    std::tr1::make_tuple(48000, 48000, 32000, 48000, 40, 30),
-                    std::tr1::make_tuple(48000, 48000, 16000, 48000, 40, 20),
-                    std::tr1::make_tuple(48000, 44100, 48000, 44100, 20, 20),
-                    std::tr1::make_tuple(48000, 44100, 32000, 44100, 20, 15),
-                    std::tr1::make_tuple(48000, 44100, 16000, 44100, 20, 15),
-                    std::tr1::make_tuple(48000, 32000, 48000, 32000, 30, 35),
-                    std::tr1::make_tuple(48000, 32000, 32000, 32000, 30, 0),
-                    std::tr1::make_tuple(48000, 32000, 16000, 32000, 30, 20),
-                    std::tr1::make_tuple(48000, 16000, 48000, 16000, 25, 20),
-                    std::tr1::make_tuple(48000, 16000, 32000, 16000, 25, 20),
-                    std::tr1::make_tuple(48000, 16000, 16000, 16000, 25, 0),
+    testing::Values(::testing::make_tuple(48000, 48000, 48000, 48000, 0, 0),
+                    ::testing::make_tuple(48000, 48000, 32000, 48000, 40, 30),
+                    ::testing::make_tuple(48000, 48000, 16000, 48000, 40, 20),
+                    ::testing::make_tuple(48000, 44100, 48000, 44100, 20, 20),
+                    ::testing::make_tuple(48000, 44100, 32000, 44100, 20, 15),
+                    ::testing::make_tuple(48000, 44100, 16000, 44100, 20, 15),
+                    ::testing::make_tuple(48000, 32000, 48000, 32000, 30, 35),
+                    ::testing::make_tuple(48000, 32000, 32000, 32000, 30, 0),
+                    ::testing::make_tuple(48000, 32000, 16000, 32000, 30, 20),
+                    ::testing::make_tuple(48000, 16000, 48000, 16000, 25, 20),
+                    ::testing::make_tuple(48000, 16000, 32000, 16000, 25, 20),
+                    ::testing::make_tuple(48000, 16000, 16000, 16000, 25, 0),
 
-                    std::tr1::make_tuple(44100, 48000, 48000, 48000, 30, 0),
-                    std::tr1::make_tuple(44100, 48000, 32000, 48000, 30, 30),
-                    std::tr1::make_tuple(44100, 48000, 16000, 48000, 30, 20),
-                    std::tr1::make_tuple(44100, 44100, 48000, 44100, 20, 20),
-                    std::tr1::make_tuple(44100, 44100, 32000, 44100, 20, 15),
-                    std::tr1::make_tuple(44100, 44100, 16000, 44100, 20, 15),
-                    std::tr1::make_tuple(44100, 32000, 48000, 32000, 30, 35),
-                    std::tr1::make_tuple(44100, 32000, 32000, 32000, 30, 0),
-                    std::tr1::make_tuple(44100, 32000, 16000, 32000, 30, 20),
-                    std::tr1::make_tuple(44100, 16000, 48000, 16000, 25, 20),
-                    std::tr1::make_tuple(44100, 16000, 32000, 16000, 25, 20),
-                    std::tr1::make_tuple(44100, 16000, 16000, 16000, 25, 0),
+                    ::testing::make_tuple(44100, 48000, 48000, 48000, 30, 0),
+                    ::testing::make_tuple(44100, 48000, 32000, 48000, 30, 30),
+                    ::testing::make_tuple(44100, 48000, 16000, 48000, 30, 20),
+                    ::testing::make_tuple(44100, 44100, 48000, 44100, 20, 20),
+                    ::testing::make_tuple(44100, 44100, 32000, 44100, 20, 15),
+                    ::testing::make_tuple(44100, 44100, 16000, 44100, 20, 15),
+                    ::testing::make_tuple(44100, 32000, 48000, 32000, 30, 35),
+                    ::testing::make_tuple(44100, 32000, 32000, 32000, 30, 0),
+                    ::testing::make_tuple(44100, 32000, 16000, 32000, 30, 20),
+                    ::testing::make_tuple(44100, 16000, 48000, 16000, 25, 20),
+                    ::testing::make_tuple(44100, 16000, 32000, 16000, 25, 20),
+                    ::testing::make_tuple(44100, 16000, 16000, 16000, 25, 0),
 
-                    std::tr1::make_tuple(32000, 48000, 48000, 48000, 30, 0),
-                    std::tr1::make_tuple(32000, 48000, 32000, 48000, 35, 30),
-                    std::tr1::make_tuple(32000, 48000, 16000, 48000, 30, 20),
-                    std::tr1::make_tuple(32000, 44100, 48000, 44100, 20, 20),
-                    std::tr1::make_tuple(32000, 44100, 32000, 44100, 20, 15),
-                    std::tr1::make_tuple(32000, 44100, 16000, 44100, 20, 15),
-                    std::tr1::make_tuple(32000, 32000, 48000, 32000, 40, 35),
-                    std::tr1::make_tuple(32000, 32000, 32000, 32000, 0, 0),
-                    std::tr1::make_tuple(32000, 32000, 16000, 32000, 40, 20),
-                    std::tr1::make_tuple(32000, 16000, 48000, 16000, 25, 20),
-                    std::tr1::make_tuple(32000, 16000, 32000, 16000, 25, 20),
-                    std::tr1::make_tuple(32000, 16000, 16000, 16000, 25, 0),
+                    ::testing::make_tuple(32000, 48000, 48000, 48000, 30, 0),
+                    ::testing::make_tuple(32000, 48000, 32000, 48000, 35, 30),
+                    ::testing::make_tuple(32000, 48000, 16000, 48000, 30, 20),
+                    ::testing::make_tuple(32000, 44100, 48000, 44100, 20, 20),
+                    ::testing::make_tuple(32000, 44100, 32000, 44100, 20, 15),
+                    ::testing::make_tuple(32000, 44100, 16000, 44100, 20, 15),
+                    ::testing::make_tuple(32000, 32000, 48000, 32000, 40, 35),
+                    ::testing::make_tuple(32000, 32000, 32000, 32000, 0, 0),
+                    ::testing::make_tuple(32000, 32000, 16000, 32000, 40, 20),
+                    ::testing::make_tuple(32000, 16000, 48000, 16000, 25, 20),
+                    ::testing::make_tuple(32000, 16000, 32000, 16000, 25, 20),
+                    ::testing::make_tuple(32000, 16000, 16000, 16000, 25, 0),
 
-                    std::tr1::make_tuple(16000, 48000, 48000, 48000, 25, 0),
-                    std::tr1::make_tuple(16000, 48000, 32000, 48000, 25, 30),
-                    std::tr1::make_tuple(16000, 48000, 16000, 48000, 25, 20),
-                    std::tr1::make_tuple(16000, 44100, 48000, 44100, 15, 20),
-                    std::tr1::make_tuple(16000, 44100, 32000, 44100, 15, 15),
-                    std::tr1::make_tuple(16000, 44100, 16000, 44100, 15, 15),
-                    std::tr1::make_tuple(16000, 32000, 48000, 32000, 25, 35),
-                    std::tr1::make_tuple(16000, 32000, 32000, 32000, 25, 0),
-                    std::tr1::make_tuple(16000, 32000, 16000, 32000, 25, 20),
-                    std::tr1::make_tuple(16000, 16000, 48000, 16000, 40, 20),
-                    std::tr1::make_tuple(16000, 16000, 32000, 16000, 50, 20),
-                    std::tr1::make_tuple(16000, 16000, 16000, 16000, 0, 0)));
+                    ::testing::make_tuple(16000, 48000, 48000, 48000, 25, 0),
+                    ::testing::make_tuple(16000, 48000, 32000, 48000, 25, 30),
+                    ::testing::make_tuple(16000, 48000, 16000, 48000, 25, 20),
+                    ::testing::make_tuple(16000, 44100, 48000, 44100, 15, 20),
+                    ::testing::make_tuple(16000, 44100, 32000, 44100, 15, 15),
+                    ::testing::make_tuple(16000, 44100, 16000, 44100, 15, 15),
+                    ::testing::make_tuple(16000, 32000, 48000, 32000, 25, 35),
+                    ::testing::make_tuple(16000, 32000, 32000, 32000, 25, 0),
+                    ::testing::make_tuple(16000, 32000, 16000, 32000, 25, 20),
+                    ::testing::make_tuple(16000, 16000, 48000, 16000, 40, 20),
+                    ::testing::make_tuple(16000, 16000, 32000, 16000, 50, 20),
+                    ::testing::make_tuple(16000, 16000, 16000, 16000, 0, 0)));
 
 #elif defined(WEBRTC_AUDIOPROC_FIXED_PROFILE)
 INSTANTIATE_TEST_CASE_P(
     CommonFormats,
     AudioProcessingTest,
-    testing::Values(std::tr1::make_tuple(48000, 48000, 48000, 48000, 20, 0),
-                    std::tr1::make_tuple(48000, 48000, 32000, 48000, 20, 30),
-                    std::tr1::make_tuple(48000, 48000, 16000, 48000, 20, 20),
-                    std::tr1::make_tuple(48000, 44100, 48000, 44100, 15, 20),
-                    std::tr1::make_tuple(48000, 44100, 32000, 44100, 15, 15),
-                    std::tr1::make_tuple(48000, 44100, 16000, 44100, 15, 15),
-                    std::tr1::make_tuple(48000, 32000, 48000, 32000, 20, 35),
-                    std::tr1::make_tuple(48000, 32000, 32000, 32000, 20, 0),
-                    std::tr1::make_tuple(48000, 32000, 16000, 32000, 20, 20),
-                    std::tr1::make_tuple(48000, 16000, 48000, 16000, 20, 20),
-                    std::tr1::make_tuple(48000, 16000, 32000, 16000, 20, 20),
-                    std::tr1::make_tuple(48000, 16000, 16000, 16000, 20, 0),
+    testing::Values(::testing::make_tuple(48000, 48000, 48000, 48000, 20, 0),
+                    ::testing::make_tuple(48000, 48000, 32000, 48000, 20, 30),
+                    ::testing::make_tuple(48000, 48000, 16000, 48000, 20, 20),
+                    ::testing::make_tuple(48000, 44100, 48000, 44100, 15, 20),
+                    ::testing::make_tuple(48000, 44100, 32000, 44100, 15, 15),
+                    ::testing::make_tuple(48000, 44100, 16000, 44100, 15, 15),
+                    ::testing::make_tuple(48000, 32000, 48000, 32000, 20, 35),
+                    ::testing::make_tuple(48000, 32000, 32000, 32000, 20, 0),
+                    ::testing::make_tuple(48000, 32000, 16000, 32000, 20, 20),
+                    ::testing::make_tuple(48000, 16000, 48000, 16000, 20, 20),
+                    ::testing::make_tuple(48000, 16000, 32000, 16000, 20, 20),
+                    ::testing::make_tuple(48000, 16000, 16000, 16000, 20, 0),
 
-                    std::tr1::make_tuple(44100, 48000, 48000, 48000, 20, 0),
-                    std::tr1::make_tuple(44100, 48000, 32000, 48000, 20, 30),
-                    std::tr1::make_tuple(44100, 48000, 16000, 48000, 20, 20),
-                    std::tr1::make_tuple(44100, 44100, 48000, 44100, 15, 20),
-                    std::tr1::make_tuple(44100, 44100, 32000, 44100, 15, 15),
-                    std::tr1::make_tuple(44100, 44100, 16000, 44100, 15, 15),
-                    std::tr1::make_tuple(44100, 32000, 48000, 32000, 20, 35),
-                    std::tr1::make_tuple(44100, 32000, 32000, 32000, 20, 0),
-                    std::tr1::make_tuple(44100, 32000, 16000, 32000, 20, 20),
-                    std::tr1::make_tuple(44100, 16000, 48000, 16000, 20, 20),
-                    std::tr1::make_tuple(44100, 16000, 32000, 16000, 20, 20),
-                    std::tr1::make_tuple(44100, 16000, 16000, 16000, 20, 0),
+                    ::testing::make_tuple(44100, 48000, 48000, 48000, 20, 0),
+                    ::testing::make_tuple(44100, 48000, 32000, 48000, 20, 30),
+                    ::testing::make_tuple(44100, 48000, 16000, 48000, 20, 20),
+                    ::testing::make_tuple(44100, 44100, 48000, 44100, 15, 20),
+                    ::testing::make_tuple(44100, 44100, 32000, 44100, 15, 15),
+                    ::testing::make_tuple(44100, 44100, 16000, 44100, 15, 15),
+                    ::testing::make_tuple(44100, 32000, 48000, 32000, 20, 35),
+                    ::testing::make_tuple(44100, 32000, 32000, 32000, 20, 0),
+                    ::testing::make_tuple(44100, 32000, 16000, 32000, 20, 20),
+                    ::testing::make_tuple(44100, 16000, 48000, 16000, 20, 20),
+                    ::testing::make_tuple(44100, 16000, 32000, 16000, 20, 20),
+                    ::testing::make_tuple(44100, 16000, 16000, 16000, 20, 0),
 
-                    std::tr1::make_tuple(32000, 48000, 48000, 48000, 20, 0),
-                    std::tr1::make_tuple(32000, 48000, 32000, 48000, 20, 30),
-                    std::tr1::make_tuple(32000, 48000, 16000, 48000, 20, 20),
-                    std::tr1::make_tuple(32000, 44100, 48000, 44100, 15, 20),
-                    std::tr1::make_tuple(32000, 44100, 32000, 44100, 15, 15),
-                    std::tr1::make_tuple(32000, 44100, 16000, 44100, 15, 15),
-                    std::tr1::make_tuple(32000, 32000, 48000, 32000, 20, 35),
-                    std::tr1::make_tuple(32000, 32000, 32000, 32000, 20, 0),
-                    std::tr1::make_tuple(32000, 32000, 16000, 32000, 20, 20),
-                    std::tr1::make_tuple(32000, 16000, 48000, 16000, 20, 20),
-                    std::tr1::make_tuple(32000, 16000, 32000, 16000, 20, 20),
-                    std::tr1::make_tuple(32000, 16000, 16000, 16000, 20, 0),
+                    ::testing::make_tuple(32000, 48000, 48000, 48000, 20, 0),
+                    ::testing::make_tuple(32000, 48000, 32000, 48000, 20, 30),
+                    ::testing::make_tuple(32000, 48000, 16000, 48000, 20, 20),
+                    ::testing::make_tuple(32000, 44100, 48000, 44100, 15, 20),
+                    ::testing::make_tuple(32000, 44100, 32000, 44100, 15, 15),
+                    ::testing::make_tuple(32000, 44100, 16000, 44100, 15, 15),
+                    ::testing::make_tuple(32000, 32000, 48000, 32000, 20, 35),
+                    ::testing::make_tuple(32000, 32000, 32000, 32000, 20, 0),
+                    ::testing::make_tuple(32000, 32000, 16000, 32000, 20, 20),
+                    ::testing::make_tuple(32000, 16000, 48000, 16000, 20, 20),
+                    ::testing::make_tuple(32000, 16000, 32000, 16000, 20, 20),
+                    ::testing::make_tuple(32000, 16000, 16000, 16000, 20, 0),
 
-                    std::tr1::make_tuple(16000, 48000, 48000, 48000, 25, 0),
-                    std::tr1::make_tuple(16000, 48000, 32000, 48000, 25, 30),
-                    std::tr1::make_tuple(16000, 48000, 16000, 48000, 25, 20),
-                    std::tr1::make_tuple(16000, 44100, 48000, 44100, 15, 20),
-                    std::tr1::make_tuple(16000, 44100, 32000, 44100, 15, 15),
-                    std::tr1::make_tuple(16000, 44100, 16000, 44100, 15, 15),
-                    std::tr1::make_tuple(16000, 32000, 48000, 32000, 25, 35),
-                    std::tr1::make_tuple(16000, 32000, 32000, 32000, 25, 0),
-                    std::tr1::make_tuple(16000, 32000, 16000, 32000, 25, 20),
-                    std::tr1::make_tuple(16000, 16000, 48000, 16000, 35, 20),
-                    std::tr1::make_tuple(16000, 16000, 32000, 16000, 40, 20),
-                    std::tr1::make_tuple(16000, 16000, 16000, 16000, 0, 0)));
+                    ::testing::make_tuple(16000, 48000, 48000, 48000, 25, 0),
+                    ::testing::make_tuple(16000, 48000, 32000, 48000, 25, 30),
+                    ::testing::make_tuple(16000, 48000, 16000, 48000, 25, 20),
+                    ::testing::make_tuple(16000, 44100, 48000, 44100, 15, 20),
+                    ::testing::make_tuple(16000, 44100, 32000, 44100, 15, 15),
+                    ::testing::make_tuple(16000, 44100, 16000, 44100, 15, 15),
+                    ::testing::make_tuple(16000, 32000, 48000, 32000, 25, 35),
+                    ::testing::make_tuple(16000, 32000, 32000, 32000, 25, 0),
+                    ::testing::make_tuple(16000, 32000, 16000, 32000, 25, 20),
+                    ::testing::make_tuple(16000, 16000, 48000, 16000, 35, 20),
+                    ::testing::make_tuple(16000, 16000, 32000, 16000, 40, 20),
+                    ::testing::make_tuple(16000, 16000, 16000, 16000, 0, 0)));
 #endif
 
 }  // namespace