OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 DecisionLogic class and derived classes. | 11 // Unit tests for DecisionLogic class and derived classes. |
12 | 12 |
13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
14 #include "webrtc/modules/audio_coding/neteq/buffer_level_filter.h" | 14 #include "webrtc/modules/audio_coding/neteq/buffer_level_filter.h" |
15 #include "webrtc/modules/audio_coding/neteq/decoder_database.h" | 15 #include "webrtc/modules/audio_coding/neteq/decoder_database.h" |
16 #include "webrtc/modules/audio_coding/neteq/decision_logic.h" | 16 #include "webrtc/modules/audio_coding/neteq/decision_logic.h" |
17 #include "webrtc/modules/audio_coding/neteq/delay_manager.h" | 17 #include "webrtc/modules/audio_coding/neteq/delay_manager.h" |
18 #include "webrtc/modules/audio_coding/neteq/delay_peak_detector.h" | 18 #include "webrtc/modules/audio_coding/neteq/delay_peak_detector.h" |
19 #include "webrtc/modules/audio_coding/neteq/packet_buffer.h" | 19 #include "webrtc/modules/audio_coding/neteq/packet_buffer.h" |
20 #include "webrtc/modules/audio_coding/neteq/tick_timer.h" | 20 #include "webrtc/modules/audio_coding/neteq/tick_timer.h" |
21 | 21 |
22 namespace webrtc { | 22 namespace webrtc { |
23 | 23 |
24 TEST(DecisionLogic, CreateAndDestroy) { | 24 TEST(DecisionLogic, CreateAndDestroy) { |
25 int fs_hz = 8000; | 25 int fs_hz = 8000; |
26 int output_size_samples = fs_hz / 100; // Samples per 10 ms. | 26 int output_size_samples = fs_hz / 100; // Samples per 10 ms. |
27 DecoderDatabase decoder_database; | 27 DecoderDatabase decoder_database; |
28 TickTimer tick_timer; | 28 TickTimer tick_timer; |
29 PacketBuffer packet_buffer(10, &tick_timer); | 29 PacketBuffer packet_buffer(10, &tick_timer); |
30 DelayPeakDetector delay_peak_detector; | 30 DelayPeakDetector delay_peak_detector(&tick_timer); |
31 DelayManager delay_manager(240, &delay_peak_detector); | 31 DelayManager delay_manager(240, &delay_peak_detector); |
32 BufferLevelFilter buffer_level_filter; | 32 BufferLevelFilter buffer_level_filter; |
33 DecisionLogic* logic = DecisionLogic::Create(fs_hz, output_size_samples, | 33 DecisionLogic* logic = DecisionLogic::Create(fs_hz, output_size_samples, |
34 kPlayoutOn, &decoder_database, | 34 kPlayoutOn, &decoder_database, |
35 packet_buffer, &delay_manager, | 35 packet_buffer, &delay_manager, |
36 &buffer_level_filter); | 36 &buffer_level_filter); |
37 delete logic; | 37 delete logic; |
38 logic = DecisionLogic::Create(fs_hz, output_size_samples, | 38 logic = DecisionLogic::Create(fs_hz, output_size_samples, |
39 kPlayoutStreaming, | 39 kPlayoutStreaming, |
40 &decoder_database, | 40 &decoder_database, |
(...skipping 10 matching lines...) Expand all Loading... |
51 kPlayoutOff, | 51 kPlayoutOff, |
52 &decoder_database, | 52 &decoder_database, |
53 packet_buffer, &delay_manager, | 53 packet_buffer, &delay_manager, |
54 &buffer_level_filter); | 54 &buffer_level_filter); |
55 delete logic; | 55 delete logic; |
56 } | 56 } |
57 | 57 |
58 // TODO(hlundin): Write more tests. | 58 // TODO(hlundin): Write more tests. |
59 | 59 |
60 } // namespace webrtc | 60 } // namespace webrtc |
OLD | NEW |