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

Unified Diff: webrtc/video/vie_encoder.cc

Issue 2630333002: Drop frames until specified bitrate is achieved. (Closed)
Patch Set: Initialize |initial_rampup_| in ctor Created 3 years, 11 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
Index: webrtc/video/vie_encoder.cc
diff --git a/webrtc/video/vie_encoder.cc b/webrtc/video/vie_encoder.cc
index f78633d532f438f809dce7453fb57accfeff0dd7..56033f4c93a4666ce9c04b46adab289dfb3b4135 100644
--- a/webrtc/video/vie_encoder.cc
+++ b/webrtc/video/vie_encoder.cc
@@ -55,6 +55,17 @@ CpuOveruseOptions GetCpuOveruseOptions(bool full_overuse_time) {
return options;
}
+int MaximumFrameSizeForBitrate(int kbps) {
perkj_webrtc 2017/01/17 08:53:10 uint32_t encoder_start_bitrate_bps_ MaximumFrame
kthelgason 2017/01/18 09:16:16 Done.
+ if (kbps > 0) {
+ if (kbps < 300 /* qvga */) {
+ return 320 * 240;
+ } else if (kbps < 500 /* vga */) {
+ return 640 * 480;
+ }
+ }
+ return std::numeric_limits<int>::max();
+}
+
} // namespace
class ViEEncoder::ConfigureEncoderTask : public rtc::QueuedTask {
@@ -244,6 +255,7 @@ ViEEncoder::ViEEncoder(uint32_t number_of_cores,
EncodedFrameObserver* encoder_timing)
: shutdown_event_(true /* manual_reset */, false),
number_of_cores_(number_of_cores),
+ initial_rampup_(false),
source_proxy_(new VideoSourceProxy(this)),
sink_(nullptr),
settings_(settings),
@@ -441,6 +453,8 @@ void ViEEncoder::ReconfigureEncoder() {
const auto scaling_settings = settings_.encoder->GetScalingSettings();
if (scaling_enabled_ && scaling_settings.enabled) {
+ // Drop frames and scale down until desired quality is achieved.
+ initial_rampup_ = true;
if (scaling_settings.thresholds) {
quality_scaler_.reset(
new QualityScaler(this, *(scaling_settings.thresholds)));
@@ -560,6 +574,15 @@ void ViEEncoder::EncodeVideoFrame(const VideoFrame& video_frame,
last_frame_height_ = video_frame.height();
last_frame_width_ = video_frame.width();
+ int expected_pixel_count =
perkj_webrtc 2017/01/17 08:53:10 nit: please remove this unnecessary temp.
perkj_webrtc 2017/01/17 10:30:02 oh, we should probably do this before Reconfigurin
kthelgason 2017/01/18 09:16:16 Done.
+ MaximumFrameSizeForBitrate(encoder_start_bitrate_bps_ / 1000);
perkj_webrtc 2017/01/17 08:53:10 nit: Why not use unit bps here too since that is w
kthelgason 2017/01/18 09:16:16 I started out implementing it that way, but change
+ if (initial_rampup_ && video_frame.size() > expected_pixel_count) {
perkj_webrtc 2017/01/17 08:53:10 instead of initial_rampup being a bool- can we let
kthelgason 2017/01/18 09:16:16 That's a very good point, thanks. Done!
+ LOG(LS_INFO) << "Dropping frame. Too large for target bitrate.";
+ ScaleDown(kQuality);
+ return;
+ }
+ initial_rampup_ = false;
+
TRACE_EVENT_ASYNC_STEP0("webrtc", "Video", video_frame.render_time_ms(),
"Encode");
@@ -725,7 +748,7 @@ void ViEEncoder::ScaleDown(ScaleReason reason) {
LOG(LS_INFO) << "Scaling down resolution.";
for (size_t i = 0; i < kScaleReasonSize; ++i) {
LOG(LS_INFO) << "Scaled " << scale_counter_[i]
- << " times for reason: " << (i ? "quality" : "cpu");
+ << " times for reason: " << (i ? "cpu" : "quality");
}
}

Powered by Google App Engine
This is Rietveld 408576698