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

Unified Diff: webkit/media/webvideoframe_impl.cc

Issue 11274017: Added support for YUV videos to the software compositor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. 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 | « webkit/media/webvideoframe_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/media/webvideoframe_impl.cc
diff --git a/webkit/media/webvideoframe_impl.cc b/webkit/media/webvideoframe_impl.cc
index 51532c9918ad9ad3fdd1a4640484ce2e0b335b52..6d26ac6dc31383a747617bd4e2a33269d3465cb8 100644
--- a/webkit/media/webvideoframe_impl.cc
+++ b/webkit/media/webvideoframe_impl.cc
@@ -12,15 +12,6 @@ using WebKit::WebVideoFrame;
namespace webkit_media {
-media::VideoFrame* WebVideoFrameImpl::toVideoFrame(
- WebVideoFrame* web_video_frame) {
- WebVideoFrameImpl* wrapped_frame =
- static_cast<WebVideoFrameImpl*>(web_video_frame);
- if (wrapped_frame)
- return wrapped_frame->video_frame_.get();
- return NULL;
-}
-
WebVideoFrameImpl::WebVideoFrameImpl(
scoped_refptr<media::VideoFrame> video_frame)
: video_frame_(video_frame) {
« no previous file with comments | « webkit/media/webvideoframe_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698