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

Unified Diff: webrtc/video/video_receive_stream.h

Issue 1670123002: Set VideoReceiveStream members in init list. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 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 | « no previous file | webrtc/video/video_receive_stream.cc » ('j') | webrtc/video/video_receive_stream.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/video_receive_stream.h
diff --git a/webrtc/video/video_receive_stream.h b/webrtc/video/video_receive_stream.h
index 94e858a9bd05f0c9a4e8582a82963fb372abd418..f6439ed6c109039df9488f3c4853a351806da38a 100644
--- a/webrtc/video/video_receive_stream.h
+++ b/webrtc/video/video_receive_stream.h
@@ -78,6 +78,8 @@ class VideoReceiveStream : public webrtc::VideoReceiveStream,
void SetSyncChannel(VoiceEngine* voice_engine, int audio_channel_id);
private:
+ RemoteBitrateEstimator* GetRemoteBitrateEstimator() const;
+
TransportAdapter transport_adapter_;
EncodedFrameCallbackAdapter encoded_frame_proxy_;
const VideoReceiveStream::Config config_;
@@ -88,9 +90,9 @@ class VideoReceiveStream : public webrtc::VideoReceiveStream,
CallStats* const call_stats_;
rtc::scoped_ptr<VideoCodingModule> vcm_;
- rtc::scoped_ptr<IncomingVideoStream> incoming_video_stream_;
- rtc::scoped_ptr<ReceiveStatisticsProxy> stats_proxy_;
- rtc::scoped_ptr<ViEChannel> vie_channel_;
+ IncomingVideoStream incoming_video_stream_;
+ ReceiveStatisticsProxy stats_proxy_;
+ ViEChannel vie_channel_;
};
} // namespace internal
} // namespace webrtc
« no previous file with comments | « no previous file | webrtc/video/video_receive_stream.cc » ('j') | webrtc/video/video_receive_stream.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698