| 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 #include "webrtc/modules/audio_coding/acm2/acm_receive_test.h" | 11 #include "webrtc/modules/audio_coding/acm2/acm_receive_test.h" |
| 12 | 12 |
| 13 #include <assert.h> | 13 #include <assert.h> |
| 14 #include <stdio.h> | 14 #include <stdio.h> |
| 15 | 15 |
| 16 #include <memory> | 16 #include <memory> |
| 17 | 17 |
| 18 #include "webrtc/api/audio_codecs/builtin_audio_decoder_factory.h" |
| 18 #include "webrtc/modules/audio_coding/codecs/audio_format_conversion.h" | 19 #include "webrtc/modules/audio_coding/codecs/audio_format_conversion.h" |
| 19 #include "webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory.h" | |
| 20 #include "webrtc/modules/audio_coding/include/audio_coding_module.h" | 20 #include "webrtc/modules/audio_coding/include/audio_coding_module.h" |
| 21 #include "webrtc/modules/audio_coding/neteq/tools/audio_sink.h" | 21 #include "webrtc/modules/audio_coding/neteq/tools/audio_sink.h" |
| 22 #include "webrtc/modules/audio_coding/neteq/tools/packet.h" | 22 #include "webrtc/modules/audio_coding/neteq/tools/packet.h" |
| 23 #include "webrtc/modules/audio_coding/neteq/tools/packet_source.h" | 23 #include "webrtc/modules/audio_coding/neteq/tools/packet_source.h" |
| 24 #include "webrtc/test/gtest.h" | 24 #include "webrtc/test/gtest.h" |
| 25 | 25 |
| 26 namespace webrtc { | 26 namespace webrtc { |
| 27 namespace test { | 27 namespace test { |
| 28 | 28 |
| 29 namespace { | 29 namespace { |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 if (clock_.TimeInMilliseconds() >= last_toggle_time_ms_ + toggle_period_ms_) { | 234 if (clock_.TimeInMilliseconds() >= last_toggle_time_ms_ + toggle_period_ms_) { |
| 235 output_freq_hz_ = (output_freq_hz_ == output_freq_hz_1_) | 235 output_freq_hz_ = (output_freq_hz_ == output_freq_hz_1_) |
| 236 ? output_freq_hz_2_ | 236 ? output_freq_hz_2_ |
| 237 : output_freq_hz_1_; | 237 : output_freq_hz_1_; |
| 238 last_toggle_time_ms_ = clock_.TimeInMilliseconds(); | 238 last_toggle_time_ms_ = clock_.TimeInMilliseconds(); |
| 239 } | 239 } |
| 240 } | 240 } |
| 241 | 241 |
| 242 } // namespace test | 242 } // namespace test |
| 243 } // namespace webrtc | 243 } // namespace webrtc |
| OLD | NEW |