| 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 #include "webrtc/modules/video_coding/jitter_buffer.h" | 10 #include "webrtc/modules/video_coding/jitter_buffer.h" |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 frame_it.second->SetGofInfo(ss_it->second, gof_idx); | 212 frame_it.second->SetGofInfo(ss_it->second, gof_idx); |
| 213 } | 213 } |
| 214 } | 214 } |
| 215 } | 215 } |
| 216 | 216 |
| 217 VCMJitterBuffer::VCMJitterBuffer(Clock* clock, | 217 VCMJitterBuffer::VCMJitterBuffer(Clock* clock, |
| 218 rtc::scoped_ptr<EventWrapper> event) | 218 rtc::scoped_ptr<EventWrapper> event) |
| 219 : clock_(clock), | 219 : clock_(clock), |
| 220 running_(false), | 220 running_(false), |
| 221 crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), | 221 crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), |
| 222 frame_event_(event.Pass()), | 222 frame_event_(std::move(event)), |
| 223 max_number_of_frames_(kStartNumberOfFrames), | 223 max_number_of_frames_(kStartNumberOfFrames), |
| 224 free_frames_(), | 224 free_frames_(), |
| 225 decodable_frames_(), | 225 decodable_frames_(), |
| 226 incomplete_frames_(), | 226 incomplete_frames_(), |
| 227 last_decoded_state_(), | 227 last_decoded_state_(), |
| 228 first_packet_since_reset_(true), | 228 first_packet_since_reset_(true), |
| 229 stats_callback_(NULL), | 229 stats_callback_(NULL), |
| 230 incoming_frame_rate_(0), | 230 incoming_frame_rate_(0), |
| 231 incoming_frame_count_(0), | 231 incoming_frame_count_(0), |
| 232 time_last_incoming_frame_count_(0), | 232 time_last_incoming_frame_count_(0), |
| (...skipping 1101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1334 } | 1334 } |
| 1335 // Evaluate if the RTT is higher than |high_rtt_nack_threshold_ms_|, and in | 1335 // Evaluate if the RTT is higher than |high_rtt_nack_threshold_ms_|, and in |
| 1336 // that case we don't wait for retransmissions. | 1336 // that case we don't wait for retransmissions. |
| 1337 if (high_rtt_nack_threshold_ms_ >= 0 && | 1337 if (high_rtt_nack_threshold_ms_ >= 0 && |
| 1338 rtt_ms_ >= high_rtt_nack_threshold_ms_) { | 1338 rtt_ms_ >= high_rtt_nack_threshold_ms_) { |
| 1339 return false; | 1339 return false; |
| 1340 } | 1340 } |
| 1341 return true; | 1341 return true; |
| 1342 } | 1342 } |
| 1343 } // namespace webrtc | 1343 } // namespace webrtc |
| OLD | NEW |