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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/media/base/videoadapter.cc
diff --git a/webrtc/media/base/videoadapter.cc b/webrtc/media/base/videoadapter.cc
index 9c3837c5729bc4b48531689c36ed2e0a9206afc7..706ed38f58303d411229b81971c08996e0fd1826 100644
--- a/webrtc/media/base/videoadapter.cc
+++ b/webrtc/media/base/videoadapter.cc
@@ -118,22 +118,47 @@ VideoAdapter::VideoAdapter()
adaption_changes_(0),
previous_width_(0),
previous_height_(0),
- input_interval_(0),
- interval_next_frame_(0),
resolution_request_max_pixel_count_(std::numeric_limits<int>::max()),
resolution_request_max_pixel_count_step_up_(0) {}
VideoAdapter::~VideoAdapter() {}
-void VideoAdapter::SetExpectedInputFrameInterval(int64_t interval) {
- // TODO(perkj): Consider measuring input frame rate instead.
- // Frame rate typically varies depending on lighting.
+bool VideoAdapter::KeepFrame(int64_t in_timestamp_ns) {
rtc::CritScope cs(&critical_section_);
- input_interval_ = interval;
+ if (!requested_format_ || requested_format_->interval == 0)
+ return true;
+
+ // If first frame, update next timestamp and keep frame.
+ if (!next_frame_timestamp_ns_) {
+ next_frame_timestamp_ns_ =
+ rtc::Optional<int64_t>(in_timestamp_ns + requested_format_->interval);
+ return true;
+ }
+
+ // Time until next frame should be outputted.
+ const int64_t time_until_next_frame_ns =
+ (*next_frame_timestamp_ns_ - in_timestamp_ns);
+
+ // Reset if timestamp is outside expected range, and keep frame.
+ if (time_until_next_frame_ns <= -requested_format_->interval ||
+ 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.
+ next_frame_timestamp_ns_ =
+ rtc::Optional<int64_t>(in_timestamp_ns + requested_format_->interval);
+ return true;
+ }
+
+ // Drop if a frame shouldn't be outputted yet.
+ if (time_until_next_frame_ns > 0)
+ return false;
+
+ // Time to output new frame.
+ *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*().
+ return true;
}
void VideoAdapter::AdaptFrameResolution(int in_width,
int in_height,
+ int64_t in_timestamp_ns,
int* cropped_width,
int* cropped_height,
int* out_width,
@@ -150,25 +175,7 @@ void VideoAdapter::AdaptFrameResolution(int in_width,
}
// Drop the input frame if necessary.
- bool should_drop = false;
- if (max_pixel_count == 0) {
- // Drop all frames as the output format is 0x0.
- should_drop = true;
- } else if (requested_format_ && requested_format_->interval > 0) {
- // Drop some frames based on input fps and output fps.
- // Normally output fps is less than input fps.
- interval_next_frame_ += input_interval_;
- if (interval_next_frame_ >= requested_format_->interval) {
- interval_next_frame_ -= requested_format_->interval;
- // Reset |interval_next_frame_| if it accumulates too much to avoid
- // "catching up" behaviour.
- if (interval_next_frame_ >= requested_format_->interval)
- interval_next_frame_ = 0;
- } else {
- should_drop = true;
- }
- }
- if (should_drop) {
+ if (max_pixel_count == 0 || !KeepFrame(in_timestamp_ns)) {
// Show VAdapt log every 90 frames dropped. (3 seconds)
if ((frames_in_ - frames_out_) % 90 == 0) {
// TODO(fbarchard): Reduce to LS_VERBOSE when adapter info is not needed
@@ -179,7 +186,7 @@ void VideoAdapter::AdaptFrameResolution(int in_width,
<< " Changes: " << adaption_changes_
<< " Input: " << in_width
<< "x" << in_height
- << " i" << input_interval_
+ << " timestamp: " << in_timestamp_ns
<< " Output: i"
<< (requested_format_ ? requested_format_->interval : 0);
}
@@ -238,7 +245,7 @@ void VideoAdapter::AdaptFrameResolution(int in_width,
LOG(LS_INFO) << "Frame size changed: scaled " << frames_scaled_ << " / out "
<< frames_out_ << " / in " << frames_in_
<< " Changes: " << adaption_changes_ << " Input: " << in_width
- << "x" << in_height << " i" << input_interval_
+ << "x" << in_height
<< " Scale: " << scale.numerator << "/" << scale.denominator
<< " Output: " << *out_width << "x" << *out_height << " i"
<< (requested_format_ ? requested_format_->interval : 0);
@@ -251,7 +258,7 @@ void VideoAdapter::AdaptFrameResolution(int in_width,
void VideoAdapter::OnOutputFormatRequest(const VideoFormat& format) {
rtc::CritScope cs(&critical_section_);
requested_format_ = rtc::Optional<VideoFormat>(format);
- interval_next_frame_ = 0;
+ next_frame_timestamp_ns_ = rtc::Optional<int64_t>();
}
void VideoAdapter::OnResolutionRequest(
« 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