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

Side by Side 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: Fixed android missed deref. 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * libjingle 2 * libjingle
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 if (start_thread_->IsCurrent()) { 376 if (start_thread_->IsCurrent()) {
377 SignalFrameCapturedOnStartThread(sample); 377 SignalFrameCapturedOnStartThread(sample);
378 } else { 378 } else {
379 // This currently happens on with at least VideoCaptureModuleV4L2 and 379 // This currently happens on with at least VideoCaptureModuleV4L2 and
380 // possibly other implementations of WebRTC's VideoCaptureModule. 380 // possibly other implementations of WebRTC's VideoCaptureModule.
381 // In order to maintain the threading contract with the upper layers and 381 // In order to maintain the threading contract with the upper layers and
382 // consistency with other capturers such as in Chrome, we need to do a 382 // consistency with other capturers such as in Chrome, we need to do a
383 // thread hop. 383 // thread hop.
384 // Note that Stop() can cause the async invoke call to be cancelled. 384 // Note that Stop() can cause the async invoke call to be cancelled.
385 async_invoker_->AsyncInvoke<void>(start_thread_, 385 async_invoker_->AsyncInvoke<void>(start_thread_,
386 // Note that this results in a shallow copying of the frame. 386 // Note that Bind captures by value, so there's an intermediate copy
387 // of sample.
387 rtc::Bind(&WebRtcVideoCapturer::SignalFrameCapturedOnStartThread, 388 rtc::Bind(&WebRtcVideoCapturer::SignalFrameCapturedOnStartThread,
388 this, sample)); 389 this, sample));
389 } 390 }
390 } 391 }
391 392
392 void WebRtcVideoCapturer::OnCaptureDelayChanged(const int32_t id, 393 void WebRtcVideoCapturer::OnCaptureDelayChanged(const int32_t id,
393 const int32_t delay) { 394 const int32_t delay) {
394 LOG(LS_INFO) << "Capture delay changed to " << delay << " ms"; 395 LOG(LS_INFO) << "Capture delay changed to " << delay << " ms";
395 } 396 }
396 397
397 void WebRtcVideoCapturer::SignalFrameCapturedOnStartThread( 398 void WebRtcVideoCapturer::SignalFrameCapturedOnStartThread(
398 const webrtc::VideoFrame frame) { 399 const webrtc::VideoFrame& frame) {
399 // This can only happen between Start() and Stop(). 400 // This can only happen between Start() and Stop().
400 RTC_DCHECK(start_thread_); 401 RTC_DCHECK(start_thread_);
401 RTC_DCHECK(start_thread_->IsCurrent()); 402 RTC_DCHECK(start_thread_->IsCurrent());
402 RTC_DCHECK(async_invoker_); 403 RTC_DCHECK(async_invoker_);
403 404
404 ++captured_frames_; 405 ++captured_frames_;
405 // Log the size and pixel aspect ratio of the first captured frame. 406 // Log the size and pixel aspect ratio of the first captured frame.
406 if (1 == captured_frames_) { 407 if (1 == captured_frames_) {
407 LOG(LS_INFO) << "Captured frame size " 408 LOG(LS_INFO) << "Captured frame size "
408 << frame.width() << "x" << frame.height() 409 << frame.width() << "x" << frame.height()
(...skipping 26 matching lines...) Expand all
435 // Convert units from VideoFrame RenderTimeMs to CapturedFrame (nanoseconds). 436 // Convert units from VideoFrame RenderTimeMs to CapturedFrame (nanoseconds).
436 time_stamp = sample.render_time_ms() * rtc::kNumNanosecsPerMillisec; 437 time_stamp = sample.render_time_ms() * rtc::kNumNanosecsPerMillisec;
437 data_size = rtc::checked_cast<uint32_t>(length); 438 data_size = rtc::checked_cast<uint32_t>(length);
438 data = buffer; 439 data = buffer;
439 rotation = sample.rotation(); 440 rotation = sample.rotation();
440 } 441 }
441 442
442 } // namespace cricket 443 } // namespace cricket
443 444
444 #endif // HAVE_WEBRTC_VIDEO 445 #endif // HAVE_WEBRTC_VIDEO
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698