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

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

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: Addressed hubbe's round 2 comments, 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
« no previous file with comments | « media/base/video_frame_metadata.h ('k') | media/cast/sender/video_sender.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 // 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 #ifndef MEDIA_CAST_SENDER_VIDEO_SENDER_H_ 5 #ifndef MEDIA_CAST_SENDER_VIDEO_SENDER_H_
6 #define MEDIA_CAST_SENDER_VIDEO_SENDER_H_ 6 #define MEDIA_CAST_SENDER_VIDEO_SENDER_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 // the encoder does not have any such capability, returns null. 60 // the encoder does not have any such capability, returns null.
61 scoped_ptr<VideoFrameFactory> CreateVideoFrameFactory(); 61 scoped_ptr<VideoFrameFactory> CreateVideoFrameFactory();
62 62
63 protected: 63 protected:
64 int GetNumberOfFramesInEncoder() const final; 64 int GetNumberOfFramesInEncoder() const final;
65 base::TimeDelta GetInFlightMediaDuration() const final; 65 base::TimeDelta GetInFlightMediaDuration() const final;
66 void OnAck(uint32 frame_id) final; 66 void OnAck(uint32 frame_id) final;
67 67
68 private: 68 private:
69 // Called by the |video_encoder_| with the next EncodedFrame to send. 69 // Called by the |video_encoder_| with the next EncodedFrame to send.
70 void OnEncodedVideoFrame(int encoder_bitrate, 70 void OnEncodedVideoFrame(const scoped_refptr<media::VideoFrame>& video_frame,
71 int encoder_bitrate,
71 scoped_ptr<SenderEncodedFrame> encoded_frame); 72 scoped_ptr<SenderEncodedFrame> encoded_frame);
72 73
73 // Encodes media::VideoFrame images into EncodedFrames. Per configuration, 74 // Encodes media::VideoFrame images into EncodedFrames. Per configuration,
74 // this will point to either the internal software-based encoder or a proxy to 75 // this will point to either the internal software-based encoder or a proxy to
75 // a hardware-based encoder. 76 // a hardware-based encoder.
76 scoped_ptr<VideoEncoder> video_encoder_; 77 scoped_ptr<VideoEncoder> video_encoder_;
77 78
78 // The number of frames queued for encoding, but not yet sent. 79 // The number of frames queued for encoding, but not yet sent.
79 int frames_in_encoder_; 80 int frames_in_encoder_;
80 81
(...skipping 19 matching lines...) Expand all
100 // NOTE: Weak pointers must be invalidated before all other member variables. 101 // NOTE: Weak pointers must be invalidated before all other member variables.
101 base::WeakPtrFactory<VideoSender> weak_factory_; 102 base::WeakPtrFactory<VideoSender> weak_factory_;
102 103
103 DISALLOW_COPY_AND_ASSIGN(VideoSender); 104 DISALLOW_COPY_AND_ASSIGN(VideoSender);
104 }; 105 };
105 106
106 } // namespace cast 107 } // namespace cast
107 } // namespace media 108 } // namespace media
108 109
109 #endif // MEDIA_CAST_SENDER_VIDEO_SENDER_H_ 110 #endif // MEDIA_CAST_SENDER_VIDEO_SENDER_H_
OLDNEW
« no previous file with comments | « media/base/video_frame_metadata.h ('k') | media/cast/sender/video_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698