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

  /external/chromium/webkit/glue/
webvideoframe_impl.h 15 // This converts a WebKit::WebVideoFrame to a media::VideoFrame.
16 static media::VideoFrame* toVideoFrame(
19 WebVideoFrameImpl(scoped_refptr<media::VideoFrame> video_frame);
31 scoped_refptr<media::VideoFrame> video_frame_;
webvideoframe_impl.cc 14 media::VideoFrame* WebVideoFrameImpl::toVideoFrame(
24 scoped_refptr<media::VideoFrame> video_frame)
32 int(media::VideoFrame::chromium_name), \
webmediaplayer_impl.h 108 void GetCurrentFrame(scoped_refptr<media::VideoFrame>* frame_out);
109 void PutCurrentFrame(scoped_refptr<media::VideoFrame> frame);
webmediaplayer_impl.cc 258 scoped_refptr<media::VideoFrame>* frame_out) {
264 scoped_refptr<media::VideoFrame> frame) {
746 scoped_refptr<media::VideoFrame> video_frame;
756 scoped_refptr<media::VideoFrame> video_frame(
  /frameworks/av/include/media/
MediaMetadataRetrieverInterface.h 23 #include <private/media/VideoFrame.h>
39 virtual VideoFrame* getFrameAtTime(int64_t timeUs, int option) = 0;
51 virtual VideoFrame* getFrameAtTime(int64_t timeUs, int option) { return NULL; }
  /external/chromium/webkit/glue/media/
web_video_renderer.h 39 // obtain ownership of VideoFrame, it should always relinquish the ownership
44 virtual void GetCurrentFrame(scoped_refptr<media::VideoFrame>* frame_out) {}
45 virtual void PutCurrentFrame(scoped_refptr<media::VideoFrame> frame) {}
video_renderer_impl.cc 54 scoped_refptr<media::VideoFrame> video_frame;
84 scoped_refptr<media::VideoFrame>* frame_out) {
89 scoped_refptr<media::VideoFrame> frame) {
154 void VideoRendererImpl::SlowPaint(media::VideoFrame* video_frame,
163 DCHECK(video_frame->format() == media::VideoFrame::YV12 ||
164 video_frame->format() == media::VideoFrame::YV16);
165 DCHECK(video_frame->stride(media::VideoFrame::kUPlane) ==
166 video_frame->stride(media::VideoFrame::kVPlane));
167 DCHECK(video_frame->planes() == media::VideoFrame::kNumYUVPlanes);
170 (video_frame->format() == media::VideoFrame::YV12)
    [all...]
video_renderer_impl.h 34 virtual void GetCurrentFrame(scoped_refptr<media::VideoFrame>* frame_out);
35 virtual void PutCurrentFrame(scoped_refptr<media::VideoFrame> frame);
53 void SlowPaint(media::VideoFrame* video_frame,
60 void FastPaint(media::VideoFrame* video_frame,
80 media::VideoFrame* last_converted_frame_;
  /frameworks/av/include/private/media/
VideoFrame.h 88 class VideoFrame
91 VideoFrame(): mWidth(0), mHeight(0), mDisplayWidth(0), mDisplayHeight(0), mSize(0), mData(0) {}
93 VideoFrame(const VideoFrame& copy) {
110 ~VideoFrame() {
  /external/chromium/third_party/libjingle/source/talk/session/phone/
mediachannel.h 247 class VideoFrame {
251 VideoFrame() : rendered_(false) {}
253 virtual ~VideoFrame() {}
272 // TODO: Add a fourcc format here and probably combine VideoFrame
280 // in which case both the current and new VideoFrame will share a single
282 virtual VideoFrame *Copy() const = 0;
316 // Writes the frame into the target VideoFrame, stretched to the size of that
320 virtual void StretchToFrame(VideoFrame *target, bool interpolate,
323 // Stretches the frame to the given size, creating a new VideoFrame object to
327 virtual VideoFrame *Stretch(size_t w, size_t h, bool interpolate
    [all...]
  /external/webrtc/src/modules/interface/
module_common_types.h 425 * VideoFrame class
427 * The VideoFrame class allows storing and
432 class VideoFrame
435 VideoFrame();
436 ~VideoFrame();
458 WebRtc_Word32 SwapFrame(VideoFrame& videoFrame);
463 WebRtc_Word32 CopyFrame(const VideoFrame& videoFrame);
470 * Delete VideoFrame and resets members to zer
    [all...]
  /frameworks/av/media/libstagefright/include/
StagefrightMetadataRetriever.h 41 virtual VideoFrame *getFrameAtTime(int64_t timeUs, int option);
  /frameworks/av/media/libmediaplayerservice/
MetadataRetrieverClient.cpp 36 #include <private/media/VideoFrame.h>
175 VideoFrame *frame = mRetriever->getFrameAtTime(timeUs, option);
180 size_t size = sizeof(VideoFrame) + frame->mSize;
189 ALOGE("not enough memory for VideoFrame size=%u", size);
193 VideoFrame *frameCopy = static_cast<VideoFrame *>(mThumbnail->pointer());
201 frameCopy->mData = (uint8_t *)frameCopy + sizeof(VideoFrame);
  /frameworks/av/media/libstagefright/
StagefrightMetadataRetriever.cpp 113 static VideoFrame *extractVideoFrameWithCodecFlags(
231 VideoFrame *frame = new VideoFrame;
286 VideoFrame *StagefrightMetadataRetriever::getFrameAtTime(
348 VideoFrame *frame =
StagefrightMediaScanner.cpp 28 #include <private/media/VideoFrame.h>
  /frameworks/base/media/jni/
android_media_MediaMetadataRetriever.cpp 26 #include <private/media/VideoFrame.h>
228 VideoFrame *videoFrame = NULL;
230 if (frameMemory != 0) { // cast the shared structure to a VideoFrame object
231 videoFrame = static_cast<VideoFrame *>(frameMemory->pointer());
233 if (videoFrame == NULL) {
234 ALOGE("getFrameAtTime: videoFrame is a NULL pointer");
239 videoFrame->mDisplayWidth,
240 videoFrame->mDisplayHeight
    [all...]
  /frameworks/av/cmds/stagefright/
stagefright.cpp 52 #include <private/media/VideoFrame.h>
852 VideoFrame *frame = (VideoFrame *)mem->pointer();
855 (uint8_t *)frame + sizeof(VideoFrame),
    [all...]
  /external/chromium/third_party/libjingle/source/talk/examples/call/
callclient.cc 65 bool RenderFrame(const cricket::VideoFrame *frame) {

Completed in 306 milliseconds