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 "webrtc/common_video/video_render_frames.h" | 11 #include "webrtc/common_video/video_render_frames.h" |
12 | 12 |
13 #include <utility> | 13 #include <utility> |
14 | 14 |
15 #include "webrtc/base/logging.h" | |
16 #include "webrtc/base/timeutils.h" | |
17 #include "webrtc/modules/include/module_common_types.h" | 15 #include "webrtc/modules/include/module_common_types.h" |
| 16 #include "webrtc/rtc_base/logging.h" |
| 17 #include "webrtc/rtc_base/timeutils.h" |
18 #include "webrtc/system_wrappers/include/trace.h" | 18 #include "webrtc/system_wrappers/include/trace.h" |
19 | 19 |
20 namespace webrtc { | 20 namespace webrtc { |
21 namespace { | 21 namespace { |
22 // Don't render frames with timestamp older than 500ms from now. | 22 // Don't render frames with timestamp older than 500ms from now. |
23 const int kOldRenderTimestampMS = 500; | 23 const int kOldRenderTimestampMS = 500; |
24 // Don't render frames with timestamp more than 10s into the future. | 24 // Don't render frames with timestamp more than 10s into the future. |
25 const int kFutureRenderTimestampMS = 10000; | 25 const int kFutureRenderTimestampMS = 10000; |
26 | 26 |
27 const uint32_t kEventMaxWaitTimeMs = 200; | 27 const uint32_t kEventMaxWaitTimeMs = 200; |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 render_delay_ms_ - | 99 render_delay_ms_ - |
100 rtc::TimeMillis(); | 100 rtc::TimeMillis(); |
101 return time_to_release < 0 ? 0u : static_cast<uint32_t>(time_to_release); | 101 return time_to_release < 0 ? 0u : static_cast<uint32_t>(time_to_release); |
102 } | 102 } |
103 | 103 |
104 bool VideoRenderFrames::HasPendingFrames() const { | 104 bool VideoRenderFrames::HasPendingFrames() const { |
105 return !incoming_frames_.empty(); | 105 return !incoming_frames_.empty(); |
106 } | 106 } |
107 | 107 |
108 } // namespace webrtc | 108 } // namespace webrtc |
OLD | NEW |