Index: webrtc/video/video_capture_input.h |
diff --git a/webrtc/video/video_capture_input.h b/webrtc/video/video_capture_input.h |
index a47e8772c1d177adeca86d7e438e19f0244c0d90..baf20820db270a0f241aa8044783f1a86c6fe6b8 100644 |
--- a/webrtc/video/video_capture_input.h |
+++ b/webrtc/video/video_capture_input.h |
@@ -53,7 +53,7 @@ class VideoCaptureInput : public webrtc::VideoCaptureInput { |
SendStatisticsProxy* const stats_proxy_; |
rtc::Event* const capture_event_; |
- VideoFrame captured_frame_ GUARDED_BY(crit_); |
+ std::unique_ptr<VideoFrame> captured_frame_ GUARDED_BY(crit_); |
Clock* const clock_; |
// Used to make sure incoming time stamp is increasing for every frame. |
int64_t last_captured_timestamp_; |