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

Unified Diff: media/base/video_frame.cc

Issue 11275088: Remove implicit scoped_refptr operator T* Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 8 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 | « media/base/pipeline.cc ('k') | media/crypto/aes_decryptor_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/video_frame.cc
diff --git a/media/base/video_frame.cc b/media/base/video_frame.cc
index 6303f09baf4dafcf12ed57e99aa93920c9820fef..d197a852c69a190f87d34d5160049428c8079de2 100644
--- a/media/base/video_frame.cc
+++ b/media/base/video_frame.cc
@@ -92,7 +92,7 @@ scoped_refptr<VideoFrame> VideoFrame::CreateColorFrame(
DCHECK(IsValidConfig(VideoFrame::YV12, size, size));
scoped_refptr<VideoFrame> frame = VideoFrame::CreateFrame(
VideoFrame::YV12, size, size, timestamp);
- FillYUV(frame, y, u, v);
+ FillYUV(frame.get(), y, u, v);
return frame;
}
« no previous file with comments | « media/base/pipeline.cc ('k') | media/crypto/aes_decryptor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698