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

Unified Diff: webrtc/video/video_receive_stream.h

Issue 1663413003: Clean up of CongestionController. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase. 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
Index: webrtc/video/video_receive_stream.h
diff --git a/webrtc/video/video_receive_stream.h b/webrtc/video/video_receive_stream.h
index 9cb6d40e50209beff5c71530dec4299bcd7237b9..71fe173eb813072df097464cec0d7d53d6229f11 100644
--- a/webrtc/video/video_receive_stream.h
+++ b/webrtc/video/video_receive_stream.h
@@ -33,6 +33,7 @@ namespace webrtc {
class CallStats;
class CongestionController;
class VoiceEngine;
+class VieRemb;
namespace internal {
@@ -46,7 +47,8 @@ class VideoReceiveStream : public webrtc::VideoReceiveStream,
const VideoReceiveStream::Config& config,
webrtc::VoiceEngine* voice_engine,
ProcessThread* process_thread,
- CallStats* call_stats);
+ CallStats* call_stats,
+ VieRemb* remb);
the sun 2016/02/08 10:39:23 For the audio streams, I've created a shared Audio
stefan-webrtc 2016/02/08 13:30:54 Possibly. pbos, what's your opinion on this?
~VideoReceiveStream() override;
// webrtc::ReceiveStream implementation.
@@ -86,6 +88,7 @@ class VideoReceiveStream : public webrtc::VideoReceiveStream,
CongestionController* const congestion_controller_;
CallStats* const call_stats_;
+ VieRemb* const remb_;
rtc::scoped_ptr<VideoCodingModule> vcm_;
IncomingVideoStream incoming_video_stream_;

Powered by Google App Engine
This is Rietveld 408576698