| Index: webrtc/modules/video_coding/video_coding_impl.h
|
| diff --git a/webrtc/modules/video_coding/video_coding_impl.h b/webrtc/modules/video_coding/video_coding_impl.h
|
| index b5d04c4a68246b9655375be0ae71143857112a50..e4fff1e1ce948495f09c26f469743a82449a4d90 100644
|
| --- a/webrtc/modules/video_coding/video_coding_impl.h
|
| +++ b/webrtc/modules/video_coding/video_coding_impl.h
|
| @@ -148,6 +148,7 @@ class VideoReceiver : public Module {
|
| VideoReceiver(Clock* clock,
|
| EventFactory* event_factory,
|
| EncodedImageCallback* pre_decode_image_callback,
|
| + VCMTiming* timing,
|
| NackSender* nack_sender = nullptr,
|
| KeyFrameRequestSender* keyframe_request_sender = nullptr);
|
| ~VideoReceiver();
|
| @@ -208,7 +209,7 @@ class VideoReceiver : public Module {
|
| Clock* const clock_;
|
| rtc::CriticalSection process_crit_;
|
| rtc::CriticalSection receive_crit_;
|
| - VCMTiming _timing;
|
| + VCMTiming* _timing;
|
| VCMReceiver _receiver;
|
| VCMDecodedFrameCallback _decodedFrameCallback;
|
| VCMFrameTypeCallback* _frameTypeCallback GUARDED_BY(process_crit_);
|
|
|