| Index: webrtc/video/video_receive_stream.h
|
| diff --git a/webrtc/video/video_receive_stream.h b/webrtc/video/video_receive_stream.h
|
| index f3a6e89f6b3639eb75a1a0e98d27c99c6b957512..a6e40df6cec6aa8e7d8d38886300379e83fe9754 100644
|
| --- a/webrtc/video/video_receive_stream.h
|
| +++ b/webrtc/video/video_receive_stream.h
|
| @@ -33,6 +33,7 @@ class CallStats;
|
| class CongestionController;
|
| class ProcessThread;
|
| 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);
|
| ~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_;
|
|
|