| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 // Unit tests for FilePlayer. | 11 // Unit tests for FilePlayer. |
| 12 | 12 |
| 13 #include "webrtc/voice_engine/file_player.h" | 13 #include "webrtc/voice_engine/file_player.h" |
| 14 | 14 |
| 15 #include <stdio.h> | 15 #include <stdio.h> |
| 16 | 16 |
| 17 #include <memory> | 17 #include <memory> |
| 18 #include <string> | 18 #include <string> |
| 19 | 19 |
| 20 #include "gflags/gflags.h" | 20 #include "gflags/gflags.h" |
| 21 #include "webrtc/base/md5digest.h" | 21 #include "webrtc/rtc_base/md5digest.h" |
| 22 #include "webrtc/base/stringencode.h" | 22 #include "webrtc/rtc_base/stringencode.h" |
| 23 #include "webrtc/test/gtest.h" | 23 #include "webrtc/test/gtest.h" |
| 24 #include "webrtc/test/testsupport/fileutils.h" | 24 #include "webrtc/test/testsupport/fileutils.h" |
| 25 | 25 |
| 26 DEFINE_bool(file_player_output, false, "Generate reference files."); | 26 DEFINE_bool(file_player_output, false, "Generate reference files."); |
| 27 | 27 |
| 28 namespace webrtc { | 28 namespace webrtc { |
| 29 | 29 |
| 30 class FilePlayerTest : public ::testing::Test { | 30 class FilePlayerTest : public ::testing::Test { |
| 31 protected: | 31 protected: |
| 32 static const uint32_t kId = 0; | 32 static const uint32_t kId = 0; |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 test::ResourcePath("utility/encapsulated_pcm16b_8khz", "wav"); | 106 test::ResourcePath("utility/encapsulated_pcm16b_8khz", "wav"); |
| 107 // The file is longer than this, but keeping the output shorter limits the | 107 // The file is longer than this, but keeping the output shorter limits the |
| 108 // runtime for the test. | 108 // runtime for the test. |
| 109 const int kOutputLengthMs = 10000; | 109 const int kOutputLengthMs = 10000; |
| 110 const std::string kRefChecksum = "e41d7e1dac8aeae9f21e8e03cd7ecd71"; | 110 const std::string kRefChecksum = "e41d7e1dac8aeae9f21e8e03cd7ecd71"; |
| 111 | 111 |
| 112 PlayFileAndCheck(kFileName, kRefChecksum, kOutputLengthMs); | 112 PlayFileAndCheck(kFileName, kRefChecksum, kOutputLengthMs); |
| 113 } | 113 } |
| 114 | 114 |
| 115 } // namespace webrtc | 115 } // namespace webrtc |
| OLD | NEW |