Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Unified Diff: webrtc/video/video_capture_input.h

Issue 1889443002: Delete method webrtc::VideoFrame::Reset. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698