Stop using std::tr1
It's all in std now. Bug: b/67839180 Change-Id: I95fc78e87055f5f7456e4fc1a80779e29e98db3d Reviewed-on: https://webrtc-review.googlesource.com/14642 Commit-Queue: Edward Lemur <ehmaldonado@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#20400}
This commit is contained in:
@ -15,9 +15,9 @@
|
||||
#include "test/gtest.h"
|
||||
#include "test/testsupport/fileutils.h"
|
||||
|
||||
using ::std::string;
|
||||
using ::std::tr1::tuple;
|
||||
using ::std::tr1::get;
|
||||
using std::string;
|
||||
using std::tuple;
|
||||
using std::get;
|
||||
using ::testing::TestWithParam;
|
||||
|
||||
namespace webrtc {
|
||||
@ -227,13 +227,19 @@ TEST_P(OpusFecTest, RandomPacketLossTest) {
|
||||
}
|
||||
}
|
||||
|
||||
const coding_param param_set[] =
|
||||
{::std::tr1::make_tuple(1, 64000, string("audio_coding/testfile32kHz"),
|
||||
string("pcm")),
|
||||
::std::tr1::make_tuple(1, 32000, string("audio_coding/testfile32kHz"),
|
||||
string("pcm")),
|
||||
::std::tr1::make_tuple(2, 64000, string("audio_coding/teststereo32kHz"),
|
||||
string("pcm"))};
|
||||
const coding_param param_set[] = {
|
||||
std::make_tuple(1,
|
||||
64000,
|
||||
string("audio_coding/testfile32kHz"),
|
||||
string("pcm")),
|
||||
std::make_tuple(1,
|
||||
32000,
|
||||
string("audio_coding/testfile32kHz"),
|
||||
string("pcm")),
|
||||
std::make_tuple(2,
|
||||
64000,
|
||||
string("audio_coding/teststereo32kHz"),
|
||||
string("pcm"))};
|
||||
|
||||
// 64 kbps, stereo
|
||||
INSTANTIATE_TEST_CASE_P(AllTest, OpusFecTest,
|
||||
|
||||
Reference in New Issue
Block a user