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..103752d832af425ae31e5466be6899f9d9485fb6 100644 |
--- a/webrtc/video/video_receive_stream.h |
+++ b/webrtc/video/video_receive_stream.h |
@@ -21,6 +21,7 @@ |
#include "webrtc/modules/video_render/video_render_defines.h" |
#include "webrtc/system_wrappers/include/clock.h" |
#include "webrtc/video/encoded_frame_callback_adapter.h" |
+#include "webrtc/video/payload_router.h" |
#include "webrtc/video/receive_statistics_proxy.h" |
#include "webrtc/video/vie_channel.h" |
#include "webrtc/video/vie_encoder.h" |
@@ -80,11 +81,14 @@ class VideoReceiveStream : public webrtc::VideoReceiveStream, |
TransportAdapter transport_adapter_; |
EncodedFrameCallbackAdapter encoded_frame_proxy_; |
const VideoReceiveStream::Config config_; |
+ ProcessThread* const process_thread_; |
Clock* const clock_; |
CongestionController* const congestion_controller_; |
CallStats* const call_stats_; |
+ PayloadRouter payload_router_; |
stefan-webrtc
2016/02/01 19:04:44
The receiver shouldn't have a payload router, only
|
+ rtc::scoped_ptr<VideoCodingModule> vcm_; |
rtc::scoped_ptr<IncomingVideoStream> incoming_video_stream_; |
rtc::scoped_ptr<ReceiveStatisticsProxy> stats_proxy_; |
rtc::scoped_ptr<ViEChannel> vie_channel_; |