HomeSort by relevance Sort by last modified time
    Searched refs:WebVideoFrame (Results 1 - 10 of 10) sorted by null

  /external/chromium/webkit/glue/
webvideoframe_impl.h 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebVideoFrame.h"
13 class WebVideoFrameImpl : public WebKit::WebVideoFrame {
15 // This converts a WebKit::WebVideoFrame to a media::VideoFrame.
17 WebKit::WebVideoFrame* web_video_frame);
21 virtual WebVideoFrame::SurfaceType surfaceType() const;
22 virtual WebVideoFrame::Format format() const;
webvideoframe_impl.cc 8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebVideoFrame.h"
15 WebVideoFrame* web_video_frame) {
31 COMPILE_ASSERT(int(WebKit::WebVideoFrame::webkit_name) == \
50 WebVideoFrame::SurfaceType WebVideoFrameImpl::surfaceType() const {
52 return static_cast<WebVideoFrame::SurfaceType>(video_frame_->type());
53 return WebVideoFrame::SurfaceTypeSystemMemory;
56 WebVideoFrame::Format WebVideoFrameImpl::format() const {
58 return static_cast<WebVideoFrame::Format>(video_frame_->format());
59 return WebVideoFrame::FormatInvalid;