| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 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/rtp_rtcp/source/playout_delay_oracle.h" | 11 #include "webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h" |
| 12 | 12 |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "webrtc/test/gtest.h" |
| 14 #include "webrtc/base/logging.h" | 14 #include "webrtc/base/logging.h" |
| 15 | 15 |
| 16 namespace webrtc { | 16 namespace webrtc { |
| 17 | 17 |
| 18 namespace { | 18 namespace { |
| 19 constexpr int kSsrc = 100; | 19 constexpr int kSsrc = 100; |
| 20 constexpr int kSequenceNumber = 100; | 20 constexpr int kSequenceNumber = 100; |
| 21 constexpr int kMinPlayoutDelay = 0; | 21 constexpr int kMinPlayoutDelay = 0; |
| 22 constexpr int kMaxPlayoutDelay = 150; | 22 constexpr int kMaxPlayoutDelay = 150; |
| 23 } // namespace | 23 } // namespace |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 EXPECT_TRUE(playout_delay_oracle_.send_playout_delay()); | 60 EXPECT_TRUE(playout_delay_oracle_.send_playout_delay()); |
| 61 | 61 |
| 62 // Oracle indicates playout delay should not be sent if sequence number | 62 // Oracle indicates playout delay should not be sent if sequence number |
| 63 // acked on a matching ssrc indicates the receiver has received the playout | 63 // acked on a matching ssrc indicates the receiver has received the playout |
| 64 // delay values. | 64 // delay values. |
| 65 ReportRTCPFeedback(kSsrc, kSequenceNumber + 1); | 65 ReportRTCPFeedback(kSsrc, kSequenceNumber + 1); |
| 66 EXPECT_FALSE(playout_delay_oracle_.send_playout_delay()); | 66 EXPECT_FALSE(playout_delay_oracle_.send_playout_delay()); |
| 67 } | 67 } |
| 68 | 68 |
| 69 } // namespace webrtc | 69 } // namespace webrtc |
| OLD | NEW |