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

Unified Diff: webrtc/video/video_capture_input.h

Issue 1332383002: Rename CaptureThread to EncodingThread. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: EncoderThreadFunction Created 5 years, 3 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
« no previous file with comments | « no previous file | webrtc/video/video_capture_input.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/video_capture_input.h
diff --git a/webrtc/video/video_capture_input.h b/webrtc/video/video_capture_input.h
index 6cbcac5e9055cf971ad11b81119814d2a456900c..e2ef07ec6501582e7a91a11f29929f006660c2ca 100644
--- a/webrtc/video/video_capture_input.h
+++ b/webrtc/video/video_capture_input.h
@@ -62,8 +62,8 @@ class VideoCaptureInput : public webrtc::VideoCaptureInput {
private:
// Thread functions for deliver captured frames to receivers.
- static bool CaptureThreadFunction(void* obj);
- bool CaptureProcess();
+ static bool EncoderThreadFunction(void* obj);
+ bool EncoderProcess();
void DeliverI420Frame(VideoFrame* video_frame);
@@ -78,10 +78,8 @@ class VideoCaptureInput : public webrtc::VideoCaptureInput {
rtc::scoped_ptr<CriticalSectionWrapper> incoming_frame_cs_;
VideoFrame incoming_frame_;
- // Capture thread.
- rtc::scoped_ptr<ThreadWrapper> capture_thread_;
- // TODO(pbos): scoped_ptr
- EventWrapper& capture_event_;
+ rtc::scoped_ptr<ThreadWrapper> encoder_thread_;
+ rtc::scoped_ptr<EventWrapper> capture_event_;
volatile int stop_;
« no previous file with comments | « no previous file | webrtc/video/video_capture_input.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698