| Index: webrtc/video/video_receive_stream.h
|
| diff --git a/webrtc/video/video_receive_stream.h b/webrtc/video/video_receive_stream.h
|
| index 0ff5269bb5c2c82b16f318ff459ce628dfcf9694..4aac80c8897e7e39b3dfad691313faa797555fb5 100644
|
| --- a/webrtc/video/video_receive_stream.h
|
| +++ b/webrtc/video/video_receive_stream.h
|
| @@ -32,6 +32,7 @@ namespace webrtc {
|
| class CallStats;
|
| class CongestionController;
|
| class VoiceEngine;
|
| +class VieRemb;
|
|
|
| namespace internal {
|
|
|
| @@ -45,7 +46,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);
|
| ~VideoReceiveStream() override;
|
|
|
| // webrtc::ReceiveStream implementation.
|
| @@ -84,6 +86,7 @@ class VideoReceiveStream : public webrtc::VideoReceiveStream,
|
|
|
| CongestionController* const congestion_controller_;
|
| CallStats* const call_stats_;
|
| + VieRemb* const remb_;
|
|
|
| rtc::scoped_ptr<IncomingVideoStream> incoming_video_stream_;
|
| rtc::scoped_ptr<ReceiveStatisticsProxy> stats_proxy_;
|
|
|