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

Unified Diff: webrtc/common_video/incoming_video_stream.cc

Issue 1679323002: 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
Index: webrtc/common_video/incoming_video_stream.cc
diff --git a/webrtc/common_video/incoming_video_stream.cc b/webrtc/common_video/incoming_video_stream.cc
index 5082eb77b5c87baeed9843fdc9ab1865dc6eb815..28697ea484649ad18f33668cfeb8ab8c3be4a991 100644
--- a/webrtc/common_video/incoming_video_stream.cc
+++ b/webrtc/common_video/incoming_video_stream.cc
@@ -92,14 +92,16 @@ int32_t IncomingVideoStream::RenderFrame(const uint32_t stream_id,
int32_t IncomingVideoStream::SetStartImage(const VideoFrame& video_frame) {
pbos-webrtc 2016/02/09 15:18:14 Can we make this void?
nisse-webrtc 2016/02/09 15:31:33 Maybe. I have no idea what this code does or from
pbos-webrtc 2016/02/09 15:36:10 All of our error codes were int32 historically. We
rtc::CritScope csS(&thread_critsect_);
- return start_image_.CopyFrame(video_frame);
+ start_image_.CopyFrame(video_frame);
+ return 0;
}
int32_t IncomingVideoStream::SetTimeoutImage(const VideoFrame& video_frame,
const uint32_t timeout) {
rtc::CritScope csS(&thread_critsect_);
timeout_time_ = timeout;
- return timeout_image_.CopyFrame(video_frame);
+ timeout_image_.CopyFrame(video_frame);
+ return 0;
}
void IncomingVideoStream::SetRenderCallback(

Powered by Google App Engine
This is Rietveld 408576698