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 <memory> | 13 #include <memory> |
14 | 14 |
15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "webrtc/base/gtest.h" |
16 #include "webrtc/modules/audio_coding/acm2/initial_delay_manager.h" | 16 #include "webrtc/modules/audio_coding/acm2/initial_delay_manager.h" |
17 | 17 |
18 namespace webrtc { | 18 namespace webrtc { |
19 | 19 |
20 namespace acm2 { | 20 namespace acm2 { |
21 | 21 |
22 namespace { | 22 namespace { |
23 | 23 |
24 const uint8_t kAudioPayloadType = 0; | 24 const uint8_t kAudioPayloadType = 0; |
25 const uint8_t kCngPayloadType = 1; | 25 const uint8_t kCngPayloadType = 1; |
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 manager_->UpdateLastReceivedPacket(rtp_info_, rtp_receive_timestamp_, | 369 manager_->UpdateLastReceivedPacket(rtp_info_, rtp_receive_timestamp_, |
370 InitialDelayManager::kAudioPacket, | 370 InitialDelayManager::kAudioPacket, |
371 false, kSamplingRateHz, &sync_stream); | 371 false, kSamplingRateHz, &sync_stream); |
372 EXPECT_EQ(0, sync_stream.num_sync_packets); | 372 EXPECT_EQ(0, sync_stream.num_sync_packets); |
373 EXPECT_FALSE(manager_->buffering()); | 373 EXPECT_FALSE(manager_->buffering()); |
374 } | 374 } |
375 | 375 |
376 } // namespace acm2 | 376 } // namespace acm2 |
377 | 377 |
378 } // namespace webrtc | 378 } // namespace webrtc |
OLD | NEW |