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

Unified Diff: talk/media/webrtc/webrtcvideocapturer.cc

Issue 1291543006: Update Bind to match its comments and always capture by value. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: CR comments, undid android encoder/decoder change Created 5 years, 2 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 | « talk/media/webrtc/webrtcvideocapturer.h ('k') | webrtc/base/bind.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/media/webrtc/webrtcvideocapturer.cc
diff --git a/talk/media/webrtc/webrtcvideocapturer.cc b/talk/media/webrtc/webrtcvideocapturer.cc
index 9f1f32af4fe8bfed81726e7e293f2f7a9c60f0d4..5ba5fb9ba25001f03871d563fa2313d777801acf 100644
--- a/talk/media/webrtc/webrtcvideocapturer.cc
+++ b/talk/media/webrtc/webrtcvideocapturer.cc
@@ -382,10 +382,12 @@ void WebRtcVideoCapturer::OnIncomingCapturedFrame(
// consistency with other capturers such as in Chrome, we need to do a
// thread hop.
// Note that Stop() can cause the async invoke call to be cancelled.
- async_invoker_->AsyncInvoke<void>(start_thread_,
- // Note that this results in a shallow copying of the frame.
- rtc::Bind(&WebRtcVideoCapturer::SignalFrameCapturedOnStartThread,
- this, sample));
+ async_invoker_->AsyncInvoke<void>(
+ start_thread_,
noahric 2015/10/23 06:02:16 FYI, this is from git cl format.
+ // Note that Bind captures by value, so there's an intermediate copy
+ // of sample.
+ rtc::Bind(&WebRtcVideoCapturer::SignalFrameCapturedOnStartThread, this,
+ sample));
}
}
@@ -395,7 +397,7 @@ void WebRtcVideoCapturer::OnCaptureDelayChanged(const int32_t id,
}
void WebRtcVideoCapturer::SignalFrameCapturedOnStartThread(
- const webrtc::VideoFrame frame) {
+ const webrtc::VideoFrame& frame) {
// This can only happen between Start() and Stop().
RTC_DCHECK(start_thread_);
RTC_DCHECK(start_thread_->IsCurrent());
« no previous file with comments | « talk/media/webrtc/webrtcvideocapturer.h ('k') | webrtc/base/bind.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698