| Index: webrtc/common_video/interface/incoming_video_stream.h
|
| diff --git a/webrtc/common_video/interface/incoming_video_stream.h b/webrtc/common_video/interface/incoming_video_stream.h
|
| index 74ecc4e837b2938e1a2eeacbf9db99307307c0d5..c5336694cb2783d63470a14fea82790c61a1a336 100644
|
| --- a/webrtc/common_video/interface/incoming_video_stream.h
|
| +++ b/webrtc/common_video/interface/incoming_video_stream.h
|
| @@ -32,6 +32,7 @@ class VideoRenderCallback {
|
| class IncomingVideoStream : public VideoRenderCallback {
|
| public:
|
| explicit IncomingVideoStream(uint32_t stream_id);
|
| + IncomingVideoStream(uint32_t stream_id, bool renderer_has_timing);
|
| ~IncomingVideoStream();
|
|
|
| // Get callback to deliver frames to the module.
|
| @@ -73,6 +74,7 @@ class IncomingVideoStream : public VideoRenderCallback {
|
| enum { kFrameRatePeriodMs = 1000 };
|
|
|
| uint32_t const stream_id_;
|
| + const bool renderer_has_timing_;
|
| // Critsects in allowed to enter order.
|
| const rtc::scoped_ptr<CriticalSectionWrapper> stream_critsect_;
|
| const rtc::scoped_ptr<CriticalSectionWrapper> thread_critsect_;
|
|
|