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 #include <list> | 11 #include <list> |
12 | 12 |
13 #include "testing/gmock/include/gmock/gmock.h" | 13 #include "testing/gmock/include/gmock/gmock.h" |
14 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
15 #include "webrtc/modules/pacing/include/paced_sender.h" | 15 #include "webrtc/modules/pacing/paced_sender.h" |
16 #include "webrtc/system_wrappers/include/clock.h" | 16 #include "webrtc/system_wrappers/include/clock.h" |
17 | 17 |
18 using testing::_; | 18 using testing::_; |
19 using testing::Return; | 19 using testing::Return; |
20 | 20 |
21 namespace webrtc { | 21 namespace webrtc { |
22 namespace test { | 22 namespace test { |
23 | 23 |
24 static const int kTargetBitrate = 800; | 24 static const int kTargetBitrate = 800; |
25 static const float kPaceMultiplier = 1.5f; | 25 static const float kPaceMultiplier = 1.5f; |
(...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
825 sequence_number++, clock_.TimeInMilliseconds(), | 825 sequence_number++, clock_.TimeInMilliseconds(), |
826 kPacketSize, false); | 826 kPacketSize, false); |
827 | 827 |
828 // Don't send padding if queue is non-empty, even if padding budget > 0. | 828 // Don't send padding if queue is non-empty, even if padding budget > 0. |
829 EXPECT_CALL(callback_, TimeToSendPadding(_)).Times(0); | 829 EXPECT_CALL(callback_, TimeToSendPadding(_)).Times(0); |
830 send_bucket_->Process(); | 830 send_bucket_->Process(); |
831 } | 831 } |
832 | 832 |
833 } // namespace test | 833 } // namespace test |
834 } // namespace webrtc | 834 } // namespace webrtc |
OLD | NEW |