OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2011 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 #ifndef WEBRTC_MODULES_AUDIO_CODING_TEST_TESTVADDTX_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_TEST_TESTVADDTX_H_ |
12 #define WEBRTC_MODULES_AUDIO_CODING_TEST_TESTVADDTX_H_ | 12 #define WEBRTC_MODULES_AUDIO_CODING_TEST_TESTVADDTX_H_ |
13 | 13 |
| 14 #include <memory> |
14 | 15 |
15 #include "webrtc/base/scoped_ptr.h" | |
16 #include "webrtc/common_types.h" | 16 #include "webrtc/common_types.h" |
17 #include "webrtc/modules/audio_coding/include/audio_coding_module.h" | 17 #include "webrtc/modules/audio_coding/include/audio_coding_module.h" |
18 #include "webrtc/modules/audio_coding/include/audio_coding_module_typedefs.h" | 18 #include "webrtc/modules/audio_coding/include/audio_coding_module_typedefs.h" |
19 #include "webrtc/modules/audio_coding/test/ACMTest.h" | 19 #include "webrtc/modules/audio_coding/test/ACMTest.h" |
20 #include "webrtc/modules/audio_coding/test/Channel.h" | 20 #include "webrtc/modules/audio_coding/test/Channel.h" |
21 | 21 |
22 namespace webrtc { | 22 namespace webrtc { |
23 | 23 |
24 class ActivityMonitor : public ACMVADCallback { | 24 class ActivityMonitor : public ACMVADCallback { |
25 public: | 25 public: |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 // 1 : there have been packets of type |x|, | 61 // 1 : there have been packets of type |x|, |
62 // with |x| indicates the following packet types | 62 // with |x| indicates the following packet types |
63 // 0 - kEmptyFrame | 63 // 0 - kEmptyFrame |
64 // 1 - kAudioFrameSpeech | 64 // 1 - kAudioFrameSpeech |
65 // 2 - kAudioFrameCN | 65 // 2 - kAudioFrameCN |
66 // 3 - kVideoFrameKey (not used by audio) | 66 // 3 - kVideoFrameKey (not used by audio) |
67 // 4 - kVideoFrameDelta (not used by audio) | 67 // 4 - kVideoFrameDelta (not used by audio) |
68 void Run(std::string in_filename, int frequency, int channels, | 68 void Run(std::string in_filename, int frequency, int channels, |
69 std::string out_filename, bool append, const int* expects); | 69 std::string out_filename, bool append, const int* expects); |
70 | 70 |
71 rtc::scoped_ptr<AudioCodingModule> acm_send_; | 71 std::unique_ptr<AudioCodingModule> acm_send_; |
72 rtc::scoped_ptr<AudioCodingModule> acm_receive_; | 72 std::unique_ptr<AudioCodingModule> acm_receive_; |
73 rtc::scoped_ptr<Channel> channel_; | 73 std::unique_ptr<Channel> channel_; |
74 rtc::scoped_ptr<ActivityMonitor> monitor_; | 74 std::unique_ptr<ActivityMonitor> monitor_; |
75 }; | 75 }; |
76 | 76 |
77 // TestWebRtcVadDtx is to verify that the WebRTC VAD/DTX perform as they should. | 77 // TestWebRtcVadDtx is to verify that the WebRTC VAD/DTX perform as they should. |
78 class TestWebRtcVadDtx final : public TestVadDtx { | 78 class TestWebRtcVadDtx final : public TestVadDtx { |
79 public: | 79 public: |
80 TestWebRtcVadDtx(); | 80 TestWebRtcVadDtx(); |
81 | 81 |
82 void Perform() override; | 82 void Perform() override; |
83 | 83 |
84 private: | 84 private: |
85 void RunTestCases(); | 85 void RunTestCases(); |
86 void Test(bool new_outfile); | 86 void Test(bool new_outfile); |
87 void SetVAD(bool enable_dtx, bool enable_vad, ACMVADMode vad_mode); | 87 void SetVAD(bool enable_dtx, bool enable_vad, ACMVADMode vad_mode); |
88 | 88 |
89 bool vad_enabled_; | 89 bool vad_enabled_; |
90 bool dtx_enabled_; | 90 bool dtx_enabled_; |
91 int output_file_num_; | 91 int output_file_num_; |
92 }; | 92 }; |
93 | 93 |
94 // TestOpusDtx is to verify that the Opus DTX performs as it should. | 94 // TestOpusDtx is to verify that the Opus DTX performs as it should. |
95 class TestOpusDtx final : public TestVadDtx { | 95 class TestOpusDtx final : public TestVadDtx { |
96 public: | 96 public: |
97 void Perform() override; | 97 void Perform() override; |
98 }; | 98 }; |
99 | 99 |
100 } // namespace webrtc | 100 } // namespace webrtc |
101 | 101 |
102 #endif // WEBRTC_MODULES_AUDIO_CODING_TEST_TESTVADDTX_H_ | 102 #endif // WEBRTC_MODULES_AUDIO_CODING_TEST_TESTVADDTX_H_ |
OLD | NEW |