| 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 |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 // |frame| references. | 136 // |frame| references. |
| 137 // Return false if |frame| will never be decodable, true otherwise. | 137 // Return false if |frame| will never be decodable, true otherwise. |
| 138 bool UpdateFrameInfoWithIncomingFrame(const FrameObject& frame, | 138 bool UpdateFrameInfoWithIncomingFrame(const FrameObject& frame, |
| 139 FrameMap::iterator info) | 139 FrameMap::iterator info) |
| 140 EXCLUSIVE_LOCKS_REQUIRED(crit_); | 140 EXCLUSIVE_LOCKS_REQUIRED(crit_); |
| 141 | 141 |
| 142 void UpdateJitterDelay() EXCLUSIVE_LOCKS_REQUIRED(crit_); | 142 void UpdateJitterDelay() EXCLUSIVE_LOCKS_REQUIRED(crit_); |
| 143 | 143 |
| 144 void UpdateHistograms() const; | 144 void UpdateHistograms() const; |
| 145 | 145 |
| 146 void ClearFramesAndHistory() EXCLUSIVE_LOCKS_REQUIRED(crit_); |
| 147 |
| 146 FrameMap frames_ GUARDED_BY(crit_); | 148 FrameMap frames_ GUARDED_BY(crit_); |
| 147 | 149 |
| 148 rtc::CriticalSection crit_; | 150 rtc::CriticalSection crit_; |
| 149 Clock* const clock_; | 151 Clock* const clock_; |
| 150 rtc::Event new_countinuous_frame_event_; | 152 rtc::Event new_countinuous_frame_event_; |
| 151 VCMJitterEstimator* const jitter_estimator_ GUARDED_BY(crit_); | 153 VCMJitterEstimator* const jitter_estimator_ GUARDED_BY(crit_); |
| 152 VCMTiming* const timing_ GUARDED_BY(crit_); | 154 VCMTiming* const timing_ GUARDED_BY(crit_); |
| 153 VCMInterFrameDelay inter_frame_delay_ GUARDED_BY(crit_); | 155 VCMInterFrameDelay inter_frame_delay_ GUARDED_BY(crit_); |
| 156 uint32_t last_decoded_frame_timestamp_ GUARDED_BY(crit_); |
| 154 FrameMap::iterator last_decoded_frame_it_ GUARDED_BY(crit_); | 157 FrameMap::iterator last_decoded_frame_it_ GUARDED_BY(crit_); |
| 155 FrameMap::iterator last_continuous_frame_it_ GUARDED_BY(crit_); | 158 FrameMap::iterator last_continuous_frame_it_ GUARDED_BY(crit_); |
| 156 int num_frames_history_ GUARDED_BY(crit_); | 159 int num_frames_history_ GUARDED_BY(crit_); |
| 157 int num_frames_buffered_ GUARDED_BY(crit_); | 160 int num_frames_buffered_ GUARDED_BY(crit_); |
| 158 bool stopped_ GUARDED_BY(crit_); | 161 bool stopped_ GUARDED_BY(crit_); |
| 159 VCMVideoProtection protection_mode_ GUARDED_BY(crit_); | 162 VCMVideoProtection protection_mode_ GUARDED_BY(crit_); |
| 160 | 163 |
| 161 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(FrameBuffer); | 164 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(FrameBuffer); |
| 162 | 165 |
| 163 // For WebRTC.Video.JitterBufferDelayInMs metric. | 166 // For WebRTC.Video.JitterBufferDelayInMs metric. |
| 164 int64_t accumulated_delay_ = 0; | 167 int64_t accumulated_delay_ = 0; |
| 165 int64_t accumulated_delay_samples_ = 0; | 168 int64_t accumulated_delay_samples_ = 0; |
| 166 | 169 |
| 167 // For WebRTC.Video.KeyFramesReceivedInPermille metric. | 170 // For WebRTC.Video.KeyFramesReceivedInPermille metric. |
| 168 int64_t num_total_frames_ = 0; | 171 int64_t num_total_frames_ = 0; |
| 169 int64_t num_key_frames_ = 0; | 172 int64_t num_key_frames_ = 0; |
| 170 }; | 173 }; |
| 171 | 174 |
| 172 } // namespace video_coding | 175 } // namespace video_coding |
| 173 } // namespace webrtc | 176 } // namespace webrtc |
| 174 | 177 |
| 175 #endif // WEBRTC_MODULES_VIDEO_CODING_FRAME_BUFFER2_H_ | 178 #endif // WEBRTC_MODULES_VIDEO_CODING_FRAME_BUFFER2_H_ |
| OLD | NEW |