| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 <string.h> | 11 #include <string.h> |
| 12 | 12 |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 14 #include "webrtc/modules/audio_coding/main/acm2/initial_delay_manager.h" | 14 #include "webrtc/modules/audio_coding/acm2/initial_delay_manager.h" |
| 15 | 15 |
| 16 namespace webrtc { | 16 namespace webrtc { |
| 17 | 17 |
| 18 namespace acm2 { | 18 namespace acm2 { |
| 19 | 19 |
| 20 namespace { | 20 namespace { |
| 21 | 21 |
| 22 const uint8_t kAudioPayloadType = 0; | 22 const uint8_t kAudioPayloadType = 0; |
| 23 const uint8_t kCngPayloadType = 1; | 23 const uint8_t kCngPayloadType = 1; |
| 24 const uint8_t kAvtPayloadType = 2; | 24 const uint8_t kAvtPayloadType = 2; |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 manager_->UpdateLastReceivedPacket(rtp_info_, rtp_receive_timestamp_, | 367 manager_->UpdateLastReceivedPacket(rtp_info_, rtp_receive_timestamp_, |
| 368 InitialDelayManager::kAudioPacket, | 368 InitialDelayManager::kAudioPacket, |
| 369 false, kSamplingRateHz, &sync_stream); | 369 false, kSamplingRateHz, &sync_stream); |
| 370 EXPECT_EQ(0, sync_stream.num_sync_packets); | 370 EXPECT_EQ(0, sync_stream.num_sync_packets); |
| 371 EXPECT_FALSE(manager_->buffering()); | 371 EXPECT_FALSE(manager_->buffering()); |
| 372 } | 372 } |
| 373 | 373 |
| 374 } // namespace acm2 | 374 } // namespace acm2 |
| 375 | 375 |
| 376 } // namespace webrtc | 376 } // namespace webrtc |
| OLD | NEW |