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

Unified Diff: webrtc/api/videocapturertracksource.cc

Issue 1861633002: Extended proxy abstraction, to call certain methods to the worker thread. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase. 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
« no previous file with comments | « webrtc/api/videocapturertracksource.h ('k') | webrtc/api/videosourceproxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/videocapturertracksource.cc
diff --git a/webrtc/api/videocapturertracksource.cc b/webrtc/api/videocapturertracksource.cc
index cb539614be72af2587954103d79150e92209eb29..b99a2d1edaf00a0a17d3332efa7aa29bdbe25b24 100644
--- a/webrtc/api/videocapturertracksource.cc
+++ b/webrtc/api/videocapturertracksource.cc
@@ -286,8 +286,9 @@ VideoCapturerTrackSource::VideoCapturerTrackSource(
rtc::Thread* worker_thread,
cricket::VideoCapturer* capturer,
bool remote)
- : VideoTrackSource(capturer, worker_thread, remote),
+ : VideoTrackSource(capturer, remote),
signaling_thread_(rtc::Thread::Current()),
+ worker_thread_(worker_thread),
video_capturer_(capturer),
started_(false) {
video_capturer_->SignalStateChange.connect(
@@ -350,7 +351,7 @@ void VideoCapturerTrackSource::Initialize(
format_ = GetBestCaptureFormat(formats);
// Start the camera with our best guess.
- if (!worker_thread()->Invoke<bool>(
+ if (!worker_thread_->Invoke<bool>(
rtc::Bind(&cricket::VideoCapturer::StartCapturing,
video_capturer_.get(), format_))) {
SetState(kEnded);
@@ -370,7 +371,7 @@ void VideoCapturerTrackSource::Stop() {
return;
}
started_ = false;
- worker_thread()->Invoke<void>(
+ worker_thread_->Invoke<void>(
rtc::Bind(&cricket::VideoCapturer::Stop, video_capturer_.get()));
}
@@ -378,7 +379,7 @@ void VideoCapturerTrackSource::Restart() {
if (started_) {
return;
}
- if (!worker_thread()->Invoke<bool>(
+ if (!worker_thread_->Invoke<bool>(
rtc::Bind(&cricket::VideoCapturer::StartCapturing,
video_capturer_.get(), format_))) {
SetState(kEnded);
« no previous file with comments | « webrtc/api/videocapturertracksource.h ('k') | webrtc/api/videosourceproxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698