Modify audio_processing_unittest to use ResourcePath instead of ProjectRootPath.
Move the resources to //resources and upload them to Google Storage. BUG=webrtc:6727 Review-Url: https://codereview.webrtc.org/2508943004 Cr-Commit-Position: refs/heads/master@{#15152}
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@ -57,6 +57,7 @@
|
|||||||
/resources/**/*.frames
|
/resources/**/*.frames
|
||||||
/resources/**/*.gai
|
/resources/**/*.gai
|
||||||
/resources/**/*.jpg
|
/resources/**/*.jpg
|
||||||
|
/resources/**/*.pb
|
||||||
/resources/**/*.pcap
|
/resources/**/*.pcap
|
||||||
/resources/**/*.pcm
|
/resources/**/*.pcm
|
||||||
/resources/**/*.rtp
|
/resources/**/*.rtp
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
1
resources/audio_processing/output_data_fixed.pb.sha1
Normal file
1
resources/audio_processing/output_data_fixed.pb.sha1
Normal file
@ -0,0 +1 @@
|
|||||||
|
31f83357d6f5a78c7eb828c8073ce35f7cd2b1fa
|
1
resources/audio_processing/output_data_float.pb.sha1
Normal file
1
resources/audio_processing/output_data_float.pb.sha1
Normal file
@ -0,0 +1 @@
|
|||||||
|
c2907879eee3f1abeeb1fe2e29dd25bdb4ef5961
|
1
resources/audio_processing/output_data_mac.pb.sha1
Normal file
1
resources/audio_processing/output_data_mac.pb.sha1
Normal file
@ -0,0 +1 @@
|
|||||||
|
eb0db8379eb703a49cd08d6c5c53a15a6cfc6b9f
|
@ -138,9 +138,6 @@ if (rtc_include_tests) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
modules_unittests_resources = [
|
modules_unittests_resources = [
|
||||||
"//data/audio_processing/output_data_fixed.pb",
|
|
||||||
"//data/audio_processing/output_data_float.pb",
|
|
||||||
"//data/audio_processing/output_data_mac.pb",
|
|
||||||
"//data/voice_engine/audio_tiny48.wav",
|
"//data/voice_engine/audio_tiny48.wav",
|
||||||
"//resources/att-downlink.rx",
|
"//resources/att-downlink.rx",
|
||||||
"//resources/att-uplink.rx",
|
"//resources/att-uplink.rx",
|
||||||
@ -161,6 +158,9 @@ if (rtc_include_tests) {
|
|||||||
"//resources/audio_processing/agc/agc_vad.dat",
|
"//resources/audio_processing/agc/agc_vad.dat",
|
||||||
"//resources/audio_processing/agc/agc_voicing_prob.dat",
|
"//resources/audio_processing/agc/agc_voicing_prob.dat",
|
||||||
"//resources/audio_processing/agc/agc_with_circular_buffer.dat",
|
"//resources/audio_processing/agc/agc_with_circular_buffer.dat",
|
||||||
|
"//resources/audio_processing/output_data_fixed.pb",
|
||||||
|
"//resources/audio_processing/output_data_float.pb",
|
||||||
|
"//resources/audio_processing/output_data_mac.pb",
|
||||||
"//resources/audio_processing/transient/ajm-macbook-1-spke16m.pcm",
|
"//resources/audio_processing/transient/ajm-macbook-1-spke16m.pcm",
|
||||||
"//resources/audio_processing/transient/audio16kHz.pcm",
|
"//resources/audio_processing/transient/audio16kHz.pcm",
|
||||||
"//resources/audio_processing/transient/audio32kHz.pcm",
|
"//resources/audio_processing/transient/audio32kHz.pcm",
|
||||||
|
@ -391,7 +391,6 @@ class ApmTest : public ::testing::Test {
|
|||||||
void VerifyDebugDumpTest(Format format);
|
void VerifyDebugDumpTest(Format format);
|
||||||
|
|
||||||
const std::string output_path_;
|
const std::string output_path_;
|
||||||
const std::string ref_path_;
|
|
||||||
const std::string ref_filename_;
|
const std::string ref_filename_;
|
||||||
std::unique_ptr<AudioProcessing> apm_;
|
std::unique_ptr<AudioProcessing> apm_;
|
||||||
AudioFrame* frame_;
|
AudioFrame* frame_;
|
||||||
@ -407,21 +406,18 @@ class ApmTest : public ::testing::Test {
|
|||||||
|
|
||||||
ApmTest::ApmTest()
|
ApmTest::ApmTest()
|
||||||
: output_path_(test::OutputPath()),
|
: output_path_(test::OutputPath()),
|
||||||
#ifndef WEBRTC_IOS
|
|
||||||
ref_path_(test::ProjectRootPath() + "data/audio_processing/"),
|
|
||||||
#else
|
|
||||||
// On iOS test data is flat in the project root dir
|
|
||||||
ref_path_(test::ProjectRootPath()),
|
|
||||||
#endif
|
|
||||||
#if defined(WEBRTC_AUDIOPROC_FIXED_PROFILE)
|
#if defined(WEBRTC_AUDIOPROC_FIXED_PROFILE)
|
||||||
ref_filename_(ref_path_ + "output_data_fixed.pb"),
|
ref_filename_(test::ResourcePath("audio_processing/output_data_fixed",
|
||||||
|
"pb")),
|
||||||
#elif defined(WEBRTC_AUDIOPROC_FLOAT_PROFILE)
|
#elif defined(WEBRTC_AUDIOPROC_FLOAT_PROFILE)
|
||||||
#if defined(WEBRTC_MAC)
|
#if defined(WEBRTC_MAC)
|
||||||
// A different file for Mac is needed because on this platform the AEC
|
// A different file for Mac is needed because on this platform the AEC
|
||||||
// constant |kFixedDelayMs| value is 20 and not 50 as it is on the rest.
|
// constant |kFixedDelayMs| value is 20 and not 50 as it is on the rest.
|
||||||
ref_filename_(ref_path_ + "output_data_mac.pb"),
|
ref_filename_(test::ResourcePath("audio_processing/output_data_mac",
|
||||||
|
"pb")),
|
||||||
#else
|
#else
|
||||||
ref_filename_(ref_path_ + "output_data_float.pb"),
|
ref_filename_(test::ResourcePath("audio_processing/output_data_float",
|
||||||
|
"pb")),
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
frame_(NULL),
|
frame_(NULL),
|
||||||
|
Reference in New Issue
Block a user