Searched defs:VideoFrame (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/ppapi/cpp/
H A Dvideo_frame.h14 class VideoFrame : public Resource { class in namespace:pp
17 /// <code>VideoFrame</code> object.
18 VideoFrame();
20 /// The copy constructor for <code>VideoFrame</code>.
22 /// @param[in] other A reference to a <code>VideoFrame</code>.
23 VideoFrame(const VideoFrame& other);
25 /// Constructs a <code>VideoFrame</code> from a <code>Resource</code>.
28 explicit VideoFrame(const Resource& resource);
34 VideoFrame(PassRe
[all...]
H A Dvideo_frame.cc20 VideoFrame::VideoFrame() { function in class:pp::VideoFrame
23 VideoFrame::VideoFrame(const VideoFrame& other) : Resource(other) { function in class:pp::VideoFrame
26 VideoFrame::VideoFrame(const Resource& resource) : Resource(resource) { function in class:pp::VideoFrame
29 VideoFrame::VideoFrame(PassRef, PP_Resource resource) function in class:pp::VideoFrame
33 VideoFrame
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dvideoframe.h45 class VideoFrame { class in namespace:cricket
47 VideoFrame() {} function in class:cricket::VideoFrame
48 virtual ~VideoFrame() {}
100 // Both the current and new VideoFrame will share a single reference-counted
102 virtual VideoFrame *Copy() const = 0;
104 // Since VideoFrame supports shallow copy and the internal frame buffer might
105 // be shared, in case VideoFrame needs exclusive access of the frame buffer,
125 // Writes the frame into the target VideoFrame.
126 virtual void CopyToFrame(VideoFrame* target) const;
160 // Writes the frame into the target VideoFrame, stretche
[all...]
/external/chromium_org/media/base/
H A Dvideo_frame.cc31 static gfx::Size AdjustCodedSize(VideoFrame::Format format,
35 case VideoFrame::YV12:
36 case VideoFrame::YV12A:
37 case VideoFrame::I420:
38 case VideoFrame::YV12J:
41 case VideoFrame::YV16:
51 scoped_refptr<VideoFrame> VideoFrame::CreateFrame(
52 VideoFrame::Format format,
57 DCHECK(format != VideoFrame
705 VideoFrame::VideoFrame(VideoFrame::Format format, function in class:media::VideoFrame
[all...]
H A Dvideo_frame.h31 class MEDIA_EXPORT VideoFrame : public base::RefCountedThreadSafe<VideoFrame> { class in namespace:media
74 static scoped_refptr<VideoFrame> CreateFrame(
96 // Wraps a native texture of the given parameters with a VideoFrame. The
97 // backing of the VideoFrame is held in the mailbox held by |mailbox_holder|,
99 // argument when the VideoFrame is to be destroyed.
102 static scoped_refptr<VideoFrame> WrapNativeTexture(
118 // Wraps packed image data residing in a memory buffer with a VideoFrame.
125 static scoped_refptr<VideoFrame> WrapExternalPackedMemory(
139 // VideoFrame
[all...]
/external/chromium_org/third_party/webrtc/modules/interface/
H A Dmodule_common_types.h398 * VideoFrame class
400 * The VideoFrame class allows storing and
405 class VideoFrame { class in namespace:webrtc
407 VideoFrame();
408 ~VideoFrame();
431 int32_t SwapFrame(VideoFrame& videoFrame);
437 int32_t CopyFrame(const VideoFrame& videoFrame);
445 * Delete VideoFrame and resets members to zero
508 }; // end of VideoFrame class declaration
510 // inline implementation of VideoFrame clas
511 inline VideoFrame::VideoFrame() function in class:webrtc::VideoFrame
[all...]
/external/webrtc/src/modules/interface/
H A Dmodule_common_types.h425 * VideoFrame class
427 * The VideoFrame class allows storing and
432 class VideoFrame class in namespace:webrtc
435 VideoFrame();
436 ~VideoFrame();
458 WebRtc_Word32 SwapFrame(VideoFrame& videoFrame);
463 WebRtc_Word32 CopyFrame(const VideoFrame& videoFrame);
470 * Delete VideoFrame and resets members to zero
534 }; // end of VideoFrame class declaration
536 // inline implementation of VideoFrame clas
538 VideoFrame::VideoFrame(): function in class:webrtc::VideoFrame
[all...]

Completed in 1425 milliseconds