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

Side by Side Diff: media/cast/sender/video_sender.cc

Issue 1157193002: RESOURCE_UTILIZATION in VideoFrameMetadata, a consumer feedback signal. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@video_frame_done_callback
Patch Set: s/stress_level/resource_utilization/ig, and REBASE Created 5 years, 6 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "media/cast/sender/video_sender.h" 5 #include "media/cast/sender/video_sender.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cstring> 8 #include <cstring>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 frames_in_encoder_ + 1, 201 frames_in_encoder_ + 1,
202 last_reported_deadline_utilization_, 202 last_reported_deadline_utilization_,
203 last_reported_lossy_utilization_, 203 last_reported_lossy_utilization_,
204 video_frame.get()); 204 video_frame.get());
205 205
206 if (video_encoder_->EncodeVideoFrame( 206 if (video_encoder_->EncodeVideoFrame(
207 video_frame, 207 video_frame,
208 reference_time, 208 reference_time,
209 base::Bind(&VideoSender::OnEncodedVideoFrame, 209 base::Bind(&VideoSender::OnEncodedVideoFrame,
210 weak_factory_.GetWeakPtr(), 210 weak_factory_.GetWeakPtr(),
211 video_frame,
211 bitrate))) { 212 bitrate))) {
212 frames_in_encoder_++; 213 frames_in_encoder_++;
213 duration_in_encoder_ += duration_added_by_next_frame; 214 duration_in_encoder_ += duration_added_by_next_frame;
214 last_enqueued_frame_rtp_timestamp_ = rtp_timestamp; 215 last_enqueued_frame_rtp_timestamp_ = rtp_timestamp;
215 last_enqueued_frame_reference_time_ = reference_time; 216 last_enqueued_frame_reference_time_ = reference_time;
216 } else { 217 } else {
217 VLOG(1) << "Encoder rejected a frame. Skipping..."; 218 VLOG(1) << "Encoder rejected a frame. Skipping...";
218 } 219 }
219 } 220 }
220 221
(...skipping 13 matching lines...) Expand all
234 } else { 235 } else {
235 return duration_in_encoder_; 236 return duration_in_encoder_;
236 } 237 }
237 } 238 }
238 239
239 void VideoSender::OnAck(uint32 frame_id) { 240 void VideoSender::OnAck(uint32 frame_id) {
240 video_encoder_->LatestFrameIdToReference(frame_id); 241 video_encoder_->LatestFrameIdToReference(frame_id);
241 } 242 }
242 243
243 void VideoSender::OnEncodedVideoFrame( 244 void VideoSender::OnEncodedVideoFrame(
245 const scoped_refptr<media::VideoFrame>& video_frame,
244 int encoder_bitrate, 246 int encoder_bitrate,
245 scoped_ptr<SenderEncodedFrame> encoded_frame) { 247 scoped_ptr<SenderEncodedFrame> encoded_frame) {
246 DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN)); 248 DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
247 249
248 frames_in_encoder_--; 250 frames_in_encoder_--;
249 DCHECK_GE(frames_in_encoder_, 0); 251 DCHECK_GE(frames_in_encoder_, 0);
250 252
251 duration_in_encoder_ = 253 duration_in_encoder_ =
252 last_enqueued_frame_reference_time_ - encoded_frame->reference_time; 254 last_enqueued_frame_reference_time_ - encoded_frame->reference_time;
253 255
254 last_reported_deadline_utilization_ = encoded_frame->deadline_utilization; 256 last_reported_deadline_utilization_ = encoded_frame->deadline_utilization;
255 last_reported_lossy_utilization_ = encoded_frame->lossy_utilization; 257 last_reported_lossy_utilization_ = encoded_frame->lossy_utilization;
256 // TODO(miu): Plumb-in a utilization feedback signal back to the producer of 258
257 // the video frames. http://crbug.com/156767 259 // Report the resource utilization for processing this frame. Take the
260 // greater of the two utilization values and attenuate them such that 75%
261 // utilization is reported as the maximum sustainable amount. This provides
262 // "wiggle room," ensuring there will be sufficient CPU and bandwidth
263 // available to handle the occasional more-complex frames.
264 static const double kAttenuationFactor = 0.75;
hubbe 2015/06/04 22:08:53 Move to top of file?
miu 2015/06/06 00:29:22 Done.
265 const double attenuated_utilization =
266 std::max(last_reported_deadline_utilization_,
267 last_reported_lossy_utilization_) / kAttenuationFactor;
268 if (attenuated_utilization >= 0.0) {
269 // Key frames are artificially capped to 1.0 because their actual
270 // utilization is atypical compared to the other frames in the stream, and
271 // this can misguide the producer of the input video frames.
272 video_frame->metadata()->SetDouble(
273 media::VideoFrameMetadata::RESOURCE_UTILIZATION,
274 encoded_frame->dependency == EncodedFrame::KEY ?
275 std::min(1.0, attenuated_utilization) : attenuated_utilization);
276 }
258 277
259 SendEncodedFrame(encoder_bitrate, encoded_frame.Pass()); 278 SendEncodedFrame(encoder_bitrate, encoded_frame.Pass());
260 } 279 }
261 280
262 } // namespace cast 281 } // namespace cast
263 } // namespace media 282 } // namespace media
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698