| Index: remoting/protocol/video_reader.cc
|
| diff --git a/remoting/protocol/video_reader.cc b/remoting/protocol/video_reader.cc
|
| index d48daaac95d15167187f65c85f6cdc42c1b4b3ce..464b512646a1fd2803527c8d5952877dfcfcbe10 100644
|
| --- a/remoting/protocol/video_reader.cc
|
| +++ b/remoting/protocol/video_reader.cc
|
| @@ -15,8 +15,8 @@ VideoReader::~VideoReader() { }
|
|
|
| // static
|
| VideoReader* VideoReader::Create(base::MessageLoopProxy* message_loop,
|
| - const SessionConfig* config) {
|
| - const ChannelConfig& video_config = config->video_config();
|
| + const SessionConfig& config) {
|
| + const ChannelConfig& video_config = config.video_config();
|
| if (video_config.transport == ChannelConfig::TRANSPORT_SRTP) {
|
| return new RtpVideoReader(message_loop);
|
| } else if (video_config.transport == ChannelConfig::TRANSPORT_STREAM) {
|
|
|