OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2010 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2010 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/media/base/videoadapter.h" | 11 #include "webrtc/media/base/videoadapter.h" |
12 | 12 |
13 #include <algorithm> | 13 #include <algorithm> |
| 14 #include <cstdlib> |
14 #include <limits> | 15 #include <limits> |
15 | 16 |
16 #include "webrtc/base/checks.h" | 17 #include "webrtc/base/checks.h" |
17 #include "webrtc/base/logging.h" | 18 #include "webrtc/base/logging.h" |
18 #include "webrtc/media/base/mediaconstants.h" | 19 #include "webrtc/media/base/mediaconstants.h" |
19 #include "webrtc/media/base/videocommon.h" | 20 #include "webrtc/media/base/videocommon.h" |
20 | 21 |
21 namespace { | 22 namespace { |
22 | 23 |
23 struct Fraction { | 24 struct Fraction { |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 | 112 |
112 namespace cricket { | 113 namespace cricket { |
113 | 114 |
114 VideoAdapter::VideoAdapter() | 115 VideoAdapter::VideoAdapter() |
115 : frames_in_(0), | 116 : frames_in_(0), |
116 frames_out_(0), | 117 frames_out_(0), |
117 frames_scaled_(0), | 118 frames_scaled_(0), |
118 adaption_changes_(0), | 119 adaption_changes_(0), |
119 previous_width_(0), | 120 previous_width_(0), |
120 previous_height_(0), | 121 previous_height_(0), |
121 input_interval_(0), | |
122 interval_next_frame_(0), | |
123 resolution_request_max_pixel_count_(std::numeric_limits<int>::max()), | 122 resolution_request_max_pixel_count_(std::numeric_limits<int>::max()), |
124 resolution_request_max_pixel_count_step_up_(0) {} | 123 resolution_request_max_pixel_count_step_up_(0) {} |
125 | 124 |
126 VideoAdapter::~VideoAdapter() {} | 125 VideoAdapter::~VideoAdapter() {} |
127 | 126 |
128 void VideoAdapter::SetExpectedInputFrameInterval(int64_t interval) { | 127 bool VideoAdapter::KeepFrame(int64_t in_timestamp_ns) { |
129 // TODO(perkj): Consider measuring input frame rate instead. | |
130 // Frame rate typically varies depending on lighting. | |
131 rtc::CritScope cs(&critical_section_); | 128 rtc::CritScope cs(&critical_section_); |
132 input_interval_ = interval; | 129 if (!requested_format_ || requested_format_->interval == 0) |
| 130 return true; |
| 131 |
| 132 // If first frame, update next timestamp and keep frame. |
| 133 if (!next_frame_timestamp_ns_) { |
| 134 next_frame_timestamp_ns_ = |
| 135 rtc::Optional<int64_t>(in_timestamp_ns + requested_format_->interval); |
| 136 return true; |
| 137 } |
| 138 |
| 139 // Time until next frame should be outputted. |
| 140 const int64_t time_until_next_frame_ns = |
| 141 (*next_frame_timestamp_ns_ - in_timestamp_ns); |
| 142 |
| 143 // Reset if timestamp is outside expected range, and keep frame. |
| 144 if (std::abs(time_until_next_frame_ns) >= requested_format_->interval) { |
| 145 next_frame_timestamp_ns_ = |
| 146 rtc::Optional<int64_t>(in_timestamp_ns + requested_format_->interval); |
| 147 return true; |
| 148 } |
| 149 |
| 150 // Drop if a frame shouldn't be outputted yet. |
| 151 if (time_until_next_frame_ns > 0) |
| 152 return false; |
| 153 |
| 154 // Time to output new frame. |
| 155 *next_frame_timestamp_ns_ += requested_format_->interval; |
| 156 return true; |
133 } | 157 } |
134 | 158 |
135 void VideoAdapter::AdaptFrameResolution(int in_width, | 159 void VideoAdapter::AdaptFrameResolution(int in_width, |
136 int in_height, | 160 int in_height, |
| 161 int64_t in_timestamp_ns, |
137 int* cropped_width, | 162 int* cropped_width, |
138 int* cropped_height, | 163 int* cropped_height, |
139 int* out_width, | 164 int* out_width, |
140 int* out_height) { | 165 int* out_height) { |
141 rtc::CritScope cs(&critical_section_); | 166 rtc::CritScope cs(&critical_section_); |
142 ++frames_in_; | 167 ++frames_in_; |
143 | 168 |
144 // The max output pixel count is the minimum of the requests from | 169 // The max output pixel count is the minimum of the requests from |
145 // OnOutputFormatRequest and OnResolutionRequest. | 170 // OnOutputFormatRequest and OnResolutionRequest. |
146 int max_pixel_count = resolution_request_max_pixel_count_; | 171 int max_pixel_count = resolution_request_max_pixel_count_; |
147 if (requested_format_) { | 172 if (requested_format_) { |
148 max_pixel_count = std::min( | 173 max_pixel_count = std::min( |
149 max_pixel_count, requested_format_->width * requested_format_->height); | 174 max_pixel_count, requested_format_->width * requested_format_->height); |
150 } | 175 } |
151 | 176 |
152 // Drop the input frame if necessary. | 177 // Drop the input frame if necessary. |
153 bool should_drop = false; | 178 if (max_pixel_count == 0 || !KeepFrame(in_timestamp_ns)) { |
154 if (max_pixel_count == 0) { | |
155 // Drop all frames as the output format is 0x0. | |
156 should_drop = true; | |
157 } else if (requested_format_ && requested_format_->interval > 0) { | |
158 // Drop some frames based on input fps and output fps. | |
159 // Normally output fps is less than input fps. | |
160 interval_next_frame_ += input_interval_; | |
161 if (interval_next_frame_ >= requested_format_->interval) { | |
162 interval_next_frame_ -= requested_format_->interval; | |
163 // Reset |interval_next_frame_| if it accumulates too much to avoid | |
164 // "catching up" behaviour. | |
165 if (interval_next_frame_ >= requested_format_->interval) | |
166 interval_next_frame_ = 0; | |
167 } else { | |
168 should_drop = true; | |
169 } | |
170 } | |
171 if (should_drop) { | |
172 // Show VAdapt log every 90 frames dropped. (3 seconds) | 179 // Show VAdapt log every 90 frames dropped. (3 seconds) |
173 if ((frames_in_ - frames_out_) % 90 == 0) { | 180 if ((frames_in_ - frames_out_) % 90 == 0) { |
174 // TODO(fbarchard): Reduce to LS_VERBOSE when adapter info is not needed | 181 // TODO(fbarchard): Reduce to LS_VERBOSE when adapter info is not needed |
175 // in default calls. | 182 // in default calls. |
176 LOG(LS_INFO) << "VAdapt Drop Frame: scaled " << frames_scaled_ | 183 LOG(LS_INFO) << "VAdapt Drop Frame: scaled " << frames_scaled_ |
177 << " / out " << frames_out_ | 184 << " / out " << frames_out_ |
178 << " / in " << frames_in_ | 185 << " / in " << frames_in_ |
179 << " Changes: " << adaption_changes_ | 186 << " Changes: " << adaption_changes_ |
180 << " Input: " << in_width | 187 << " Input: " << in_width |
181 << "x" << in_height | 188 << "x" << in_height |
182 << " i" << input_interval_ | 189 << " timestamp: " << in_timestamp_ns |
183 << " Output: i" | 190 << " Output: i" |
184 << (requested_format_ ? requested_format_->interval : 0); | 191 << (requested_format_ ? requested_format_->interval : 0); |
185 } | 192 } |
186 | 193 |
187 // Drop frame. | 194 // Drop frame. |
188 *cropped_width = 0; | 195 *cropped_width = 0; |
189 *cropped_height = 0; | 196 *cropped_height = 0; |
190 *out_width = 0; | 197 *out_width = 0; |
191 *out_height = 0; | 198 *out_height = 0; |
192 return; | 199 return; |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 ++frames_out_; | 238 ++frames_out_; |
232 if (scale.numerator != scale.denominator) | 239 if (scale.numerator != scale.denominator) |
233 ++frames_scaled_; | 240 ++frames_scaled_; |
234 | 241 |
235 if (previous_width_ && (previous_width_ != *out_width || | 242 if (previous_width_ && (previous_width_ != *out_width || |
236 previous_height_ != *out_height)) { | 243 previous_height_ != *out_height)) { |
237 ++adaption_changes_; | 244 ++adaption_changes_; |
238 LOG(LS_INFO) << "Frame size changed: scaled " << frames_scaled_ << " / out " | 245 LOG(LS_INFO) << "Frame size changed: scaled " << frames_scaled_ << " / out " |
239 << frames_out_ << " / in " << frames_in_ | 246 << frames_out_ << " / in " << frames_in_ |
240 << " Changes: " << adaption_changes_ << " Input: " << in_width | 247 << " Changes: " << adaption_changes_ << " Input: " << in_width |
241 << "x" << in_height << " i" << input_interval_ | 248 << "x" << in_height |
242 << " Scale: " << scale.numerator << "/" << scale.denominator | 249 << " Scale: " << scale.numerator << "/" << scale.denominator |
243 << " Output: " << *out_width << "x" << *out_height << " i" | 250 << " Output: " << *out_width << "x" << *out_height << " i" |
244 << (requested_format_ ? requested_format_->interval : 0); | 251 << (requested_format_ ? requested_format_->interval : 0); |
245 } | 252 } |
246 | 253 |
247 previous_width_ = *out_width; | 254 previous_width_ = *out_width; |
248 previous_height_ = *out_height; | 255 previous_height_ = *out_height; |
249 } | 256 } |
250 | 257 |
251 void VideoAdapter::OnOutputFormatRequest(const VideoFormat& format) { | 258 void VideoAdapter::OnOutputFormatRequest(const VideoFormat& format) { |
252 rtc::CritScope cs(&critical_section_); | 259 rtc::CritScope cs(&critical_section_); |
253 requested_format_ = rtc::Optional<VideoFormat>(format); | 260 requested_format_ = rtc::Optional<VideoFormat>(format); |
254 interval_next_frame_ = 0; | 261 next_frame_timestamp_ns_ = rtc::Optional<int64_t>(); |
255 } | 262 } |
256 | 263 |
257 void VideoAdapter::OnResolutionRequest( | 264 void VideoAdapter::OnResolutionRequest( |
258 rtc::Optional<int> max_pixel_count, | 265 rtc::Optional<int> max_pixel_count, |
259 rtc::Optional<int> max_pixel_count_step_up) { | 266 rtc::Optional<int> max_pixel_count_step_up) { |
260 rtc::CritScope cs(&critical_section_); | 267 rtc::CritScope cs(&critical_section_); |
261 resolution_request_max_pixel_count_ = | 268 resolution_request_max_pixel_count_ = |
262 max_pixel_count.value_or(std::numeric_limits<int>::max()); | 269 max_pixel_count.value_or(std::numeric_limits<int>::max()); |
263 resolution_request_max_pixel_count_step_up_ = | 270 resolution_request_max_pixel_count_step_up_ = |
264 max_pixel_count_step_up.value_or(0); | 271 max_pixel_count_step_up.value_or(0); |
265 } | 272 } |
266 | 273 |
267 } // namespace cricket | 274 } // namespace cricket |
OLD | NEW |