OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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;
webmediaplayer_impl.h
254
virtual WebKit::
WebVideoFrame
* getCurrentFrame();
255
virtual void putCurrentFrame(WebKit::
WebVideoFrame
* web_video_frame);
webmediaplayer_impl.cc
28
#include "third_party/WebKit/Source/WebKit/chromium/public/
WebVideoFrame
.h"
745
WebKit::
WebVideoFrame
* WebMediaPlayerImpl::getCurrentFrame() {
754
WebKit::
WebVideoFrame
* web_video_frame) {
/external/webkit/Source/WebKit/chromium/src/
VideoFrameChromiumImpl.h
35
#include "
WebVideoFrame
.h"
39
// A wrapper class for WebKit::
WebVideoFrame
. Objects can be created in WebKit
43
// Converts a WebCore::VideoFrameChromium to a WebKit::
WebVideoFrame
.
44
static
WebVideoFrame
* toWebVideoFrame(WebCore::VideoFrameChromium*);
46
// Creates a VideoFrameChromiumImpl object to wrap the given
WebVideoFrame
.
47
// The VideoFrameChromiumImpl does not take ownership of the
WebVideoFrame
49
VideoFrameChromiumImpl(
WebVideoFrame
*);
64
WebVideoFrame
* m_webVideoFrame;
VideoFrameChromiumImpl.cpp
35
#include "
WebVideoFrame
.h"
41
WebVideoFrame
* VideoFrameChromiumImpl::toWebVideoFrame(VideoFrameChromium* videoFrame)
49
VideoFrameChromiumImpl::VideoFrameChromiumImpl(
WebVideoFrame
*
webVideoFrame
)
50
: m_webVideoFrame(
webVideoFrame
)
AssertMatchingEnums.cpp
85
#include "
WebVideoFrame
.h"
339
COMPILE_ASSERT_MATCHING_ENUM(
WebVideoFrame
::FormatInvalid, VideoFrameChromium::Invalid);
340
COMPILE_ASSERT_MATCHING_ENUM(
WebVideoFrame
::FormatRGB555, VideoFrameChromium::RGB555);
341
COMPILE_ASSERT_MATCHING_ENUM(
WebVideoFrame
::FormatRGB565, VideoFrameChromium::RGB565);
342
COMPILE_ASSERT_MATCHING_ENUM(
WebVideoFrame
::FormatRGB24, VideoFrameChromium::RGB24);
343
COMPILE_ASSERT_MATCHING_ENUM(
WebVideoFrame
::FormatRGB32, VideoFrameChromium::RGB32);
344
COMPILE_ASSERT_MATCHING_ENUM(
WebVideoFrame
::FormatRGBA, VideoFrameChromium::RGBA);
345
COMPILE_ASSERT_MATCHING_ENUM(
WebVideoFrame
::FormatYV12, VideoFrameChromium::YV12);
346
COMPILE_ASSERT_MATCHING_ENUM(
WebVideoFrame
::FormatYV16, VideoFrameChromium::YV16);
347
COMPILE_ASSERT_MATCHING_ENUM(
WebVideoFrame
::FormatNV12, VideoFrameChromium::NV12)
[
all
...]
WebMediaPlayerClientImpl.cpp
532
WebVideoFrame
* webkitVideoFrame = m_webMediaPlayer->getCurrentFrame();
/external/webkit/Source/WebKit/chromium/public/
WebVideoFrame.h
38
class
WebVideoFrame
{
WebMediaPlayer.h
36
#include "
WebVideoFrame
.h"
143
// This function returns a pointer to a
WebVideoFrame
, which is
149
virtual
WebVideoFrame
* getCurrentFrame() { return 0; }
153
virtual void putCurrentFrame(
WebVideoFrame
*) { }
Completed in 998 milliseconds