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

Unified Diff: webrtc/media/engine/fakewebrtcvideocapturemodule.h

Issue 1743613002: Revert of Cleanup of webrtc::VideoFrame. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 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/common_video/video_frame.cc ('k') | webrtc/media/engine/webrtcvideocapturer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/media/engine/fakewebrtcvideocapturemodule.h
diff --git a/webrtc/media/engine/fakewebrtcvideocapturemodule.h b/webrtc/media/engine/fakewebrtcvideocapturemodule.h
index 397ce9c2625b081a187b3f43c6f3584215997a9a..43f72b9538ef6c25be4faeb699fbd80b0e1c9668 100644
--- a/webrtc/media/engine/fakewebrtcvideocapturemodule.h
+++ b/webrtc/media/engine/fakewebrtcvideocapturemodule.h
@@ -90,14 +90,17 @@
return 0;
}
- void SendFrame(int w, int h) {
- if (!running_) return;
+ bool SendFrame(int w, int h) {
+ if (!running_) return false;
webrtc::VideoFrame sample;
// Setting stride based on width.
- sample.CreateEmptyFrame(w, h, w, (w + 1) / 2, (w + 1) / 2);
+ if (sample.CreateEmptyFrame(w, h, w, (w + 1) / 2, (w + 1) / 2) < 0) {
+ return false;
+ }
if (callback_) {
callback_->OnIncomingCapturedFrame(id_, sample);
}
+ return true;
}
const webrtc::VideoCaptureCapability& cap() const {
« no previous file with comments | « webrtc/common_video/video_frame.cc ('k') | webrtc/media/engine/webrtcvideocapturer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698