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

Unified Diff: media/cast/sender/video_sender.h

Issue 1143363005: Revert of [Cast] Compute utilization metrics and add performance overlay. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | « media/cast/sender/video_encoder_unittest.cc ('k') | media/cast/sender/video_sender.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/sender/video_sender.h
diff --git a/media/cast/sender/video_sender.h b/media/cast/sender/video_sender.h
index f9b49e23322b1b107e47b466eaf7d5e8bf95373c..386ddb9c7626cd8c221f31d80feeffc7278ff03e 100644
--- a/media/cast/sender/video_sender.h
+++ b/media/cast/sender/video_sender.h
@@ -23,7 +23,6 @@
namespace cast {
class CastTransportSender;
-struct SenderEncodedFrame;
class VideoEncoder;
class VideoFrameFactory;
@@ -68,7 +67,7 @@
private:
// Called by the |video_encoder_| with the next EncodedFrame to send.
void OnEncodedVideoFrame(int encoder_bitrate,
- scoped_ptr<SenderEncodedFrame> encoded_frame);
+ scoped_ptr<EncodedFrame> encoded_frame);
// Encodes media::VideoFrame images into EncodedFrames. Per configuration,
// this will point to either the internal software-based encoder or a proxy to
@@ -91,12 +90,6 @@
PlayoutDelayChangeCB playout_delay_change_cb_;
- // The video encoder's performance metrics as of the last call to
- // OnEncodedVideoFrame(). See header file comments for SenderEncodedFrame for
- // an explanation of these values.
- double last_reported_deadline_utilization_;
- double last_reported_lossy_utilization_;
-
// NOTE: Weak pointers must be invalidated before all other member variables.
base::WeakPtrFactory<VideoSender> weak_factory_;
« no previous file with comments | « media/cast/sender/video_encoder_unittest.cc ('k') | media/cast/sender/video_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698