Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: webrtc/media/base/videoadapter.cc

Issue 1982983003: VideoAdapter: Drop frames based on actual fps instead of expected fps (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Use rtc::Optional for next timestamp instead Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/media/base/videoadapter.h ('k') | webrtc/media/base/videoadapter_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 111
112 namespace cricket { 112 namespace cricket {
113 113
114 VideoAdapter::VideoAdapter() 114 VideoAdapter::VideoAdapter()
115 : frames_in_(0), 115 : frames_in_(0),
116 frames_out_(0), 116 frames_out_(0),
117 frames_scaled_(0), 117 frames_scaled_(0),
118 adaption_changes_(0), 118 adaption_changes_(0),
119 previous_width_(0), 119 previous_width_(0),
120 previous_height_(0), 120 previous_height_(0),
121 input_interval_(0),
122 interval_next_frame_(0),
123 resolution_request_max_pixel_count_(std::numeric_limits<int>::max()), 121 resolution_request_max_pixel_count_(std::numeric_limits<int>::max()),
124 resolution_request_max_pixel_count_step_up_(0) {} 122 resolution_request_max_pixel_count_step_up_(0) {}
125 123
126 VideoAdapter::~VideoAdapter() {} 124 VideoAdapter::~VideoAdapter() {}
127 125
128 void VideoAdapter::SetExpectedInputFrameInterval(int64_t interval) { 126 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_); 127 rtc::CritScope cs(&critical_section_);
132 input_interval_ = interval; 128 if (!requested_format_ || requested_format_->interval == 0)
129 return true;
130
131 // If first frame, update next timestamp and keep frame.
132 if (!next_frame_timestamp_ns_) {
133 next_frame_timestamp_ns_ =
134 rtc::Optional<int64_t>(in_timestamp_ns + requested_format_->interval);
135 return true;
136 }
137
138 // Time until next frame should be outputted.
139 const int64_t time_until_next_frame_ns =
140 (*next_frame_timestamp_ns_ - in_timestamp_ns);
141
142 // Reset if timestamp is outside expected range, and keep frame.
143 if (time_until_next_frame_ns <= -requested_format_->interval ||
144 time_until_next_frame_ns >= requested_format_->interval) {
nisse-webrtc 2016/05/19 07:02:36 Can you use std::abs?
magjed_webrtc 2016/05/19 08:52:19 Done.
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;
nisse-webrtc 2016/05/19 07:02:36 This is the overload T& operator*(), or how does i
magjed_webrtc 2016/05/19 08:52:19 Yes, it's the overloaded operator T& operator*().
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
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
OLDNEW
« no previous file with comments | « webrtc/media/base/videoadapter.h ('k') | webrtc/media/base/videoadapter_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698