Chromium Code Reviews| Index: webrtc/video_receive_stream.h |
| diff --git a/webrtc/video_receive_stream.h b/webrtc/video_receive_stream.h |
| index 95253366d358b749a204f99be9fb7fb2db919f61..ac714fd30fea2d2158adecf1d3815f2a99e4a663 100644 |
| --- a/webrtc/video_receive_stream.h |
| +++ b/webrtc/video_receive_stream.h |
| @@ -86,6 +86,10 @@ class VideoReceiveStream : public ReceiveStream { |
| }; |
| struct Config { |
| + Config() = delete; |
| + explicit Config(newapi::Transport* send_transport) |
| + : send_transport(send_transport) {} |
| + |
| std::string ToString() const; |
| // Decoders for every payload that we can receive. |
| @@ -137,6 +141,9 @@ class VideoReceiveStream : public ReceiveStream { |
| std::vector<RtpExtension> extensions; |
| } rtp; |
| + // Transport for outgoing packets (RTCP). |
| + newapi::Transport* send_transport = nullptr; |
|
pbos-webrtc
2015/08/26 12:21:22
Rename this rtcp_send_transport, it'll help future
the sun
2015/08/27 08:42:22
Done.
|
| + |
| // VideoRenderer will be called for each decoded frame. 'nullptr' disables |
| // rendering of this stream. |
| VideoRenderer* renderer = nullptr; |