| 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 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 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(&tick_timer); | 30 DelayPeakDetector delay_peak_detector(&tick_timer); |
| 31 DelayManager delay_manager(240, &delay_peak_detector); | 31 DelayManager delay_manager(240, &delay_peak_detector, &tick_timer); |
| 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, |
| 41 packet_buffer, &delay_manager, | 41 packet_buffer, &delay_manager, |
| 42 &buffer_level_filter); | 42 &buffer_level_filter); |
| 43 delete logic; | 43 delete logic; |
| 44 logic = DecisionLogic::Create(fs_hz, output_size_samples, | 44 logic = DecisionLogic::Create(fs_hz, output_size_samples, |
| 45 kPlayoutFax, | 45 kPlayoutFax, |
| 46 &decoder_database, | 46 &decoder_database, |
| 47 packet_buffer, &delay_manager, | 47 packet_buffer, &delay_manager, |
| 48 &buffer_level_filter); | 48 &buffer_level_filter); |
| 49 delete logic; | 49 delete logic; |
| 50 logic = DecisionLogic::Create(fs_hz, output_size_samples, | 50 logic = DecisionLogic::Create(fs_hz, output_size_samples, |
| 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 |