Searched refs:PutFrame (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/ppapi/thunk/
H A Dppb_video_destination_private_api.h25 virtual int32_t PutFrame(const PP_VideoFrame_Private& frame) = 0;
H A Dppb_video_destination_private_thunk.cc43 int32_t PutFrame(PP_Resource destination, function in namespace:ppapi::thunk::__anon10323
48 return enter.object()->PutFrame(*frame);
62 &PutFrame,
H A Dppb_media_stream_video_track_api.h29 virtual int32_t PutFrame(PP_Resource frame) = 0;
H A Dppb_media_stream_video_track_thunk.cc114 int32_t PutFrame(PP_Resource video_track, PP_Resource frame) { function in namespace:ppapi::thunk::__anon10291
115 VLOG(4) << "PPB_MediaStreamVideoTrack::PutFrame()";
119 return enter.object()->PutFrame(frame);
144 &PutFrame
/external/chromium_org/ppapi/api/private/
H A Dppb_video_destination_private.idl84 int32_t PutFrame([in] PP_Resource destination,
/external/chromium_org/ppapi/cpp/private/
H A Dvideo_destination_private.cc60 int32_t VideoDestination_Private::PutFrame( function in class:pp::VideoDestination_Private
63 return get_interface<PPB_VideoDestination_Private_0_1>()->PutFrame(
H A Dvideo_destination_private.h68 /// PutFrame(), there is the possibility of artifacts because the browser may
79 int32_t PutFrame(const VideoFrame_Private& frame);
/external/chromium_org/ppapi/c/private/
H A Dppb_video_destination_private.h105 int32_t (*PutFrame)(PP_Resource destination, member in struct:PPB_VideoDestination_Private_0_1
/external/chromium_org/content/renderer/media/webrtc/
H A Dvideo_destination_handler.h29 virtual void PutFrame(PPB_ImageData_Impl* image_data,
48 virtual void PutFrame(PPB_ImageData_Impl* image_data,
H A Dvideo_destination_handler_unittest.cc70 TEST_F(VideoDestinationHandlerTest, PutFrame) {
99 frame_writer->PutFrame(image.get(), 10);
H A Dvideo_destination_handler.cc110 void PpFrameWriter::PutFrame(PPB_ImageData_Impl* image_data, function in class:content::PpFrameWriter
113 DVLOG(3) << "PpFrameWriter::PutFrame()";
116 LOG(ERROR) << "PpFrameWriter::PutFrame - Called with NULL image_data.";
121 LOG(ERROR) << "PpFrameWriter::PutFrame - "
127 LOG(ERROR) << "PpFrameWriter::PutFrame - "
177 virtual void PutFrame(PPB_ImageData_Impl* image_data,
179 writer_->PutFrame(image_data, time_stamp_ns);
/external/chromium_org/ppapi/cpp/
H A Dmedia_stream_video_track.h143 // then use |PutFrame()| to send the frame back.
150 int32_t PutFrame(const VideoFrame& frame);
H A Dmedia_stream_video_track.cc148 int32_t MediaStreamVideoTrack::PutFrame(const VideoFrame& frame) { function in class:pp::MediaStreamVideoTrack
150 return get_interface<PPB_MediaStreamVideoTrack_1_0>()->PutFrame(
/external/chromium_org/ppapi/proxy/
H A Dvideo_destination_resource.h40 virtual int32_t PutFrame(const PP_VideoFrame_Private& frame) OVERRIDE;
H A Dmedia_stream_video_track_resource.h50 virtual int32_t PutFrame(PP_Resource frame) OVERRIDE;
H A Dvideo_destination_resource.cc59 int32_t VideoDestinationResource::PutFrame( function in class:ppapi::proxy::VideoDestinationResource
74 "VideoDestinationPrivateResource.PutFrame: Bad image resource.");
H A Dmedia_stream_video_track_resource.cc166 int32_t MediaStreamVideoTrackResource::PutFrame(PP_Resource frame) { function in class:ppapi::proxy::MediaStreamVideoTrackResource
167 // TODO(ronghuawu): Consider to rename RecycleFrame to PutFrame and use
168 // one set of GetFrame and PutFrame for both input and output.
/external/chromium_org/ppapi/tests/
H A Dtest_video_destination.cc62 RUN_TEST(PutFrame, filter);
121 ASSERT_EQ(PP_OK, video_destination.PutFrame(video_frame));
/external/chromium_org/ppapi/api/
H A Dppb_media_stream_video_track.idl232 * then use |PutFrame()| to send the frame back.
245 int32_t PutFrame([in] PP_Resource video_track, [in] PP_Resource frame);
/external/chromium_org/content/renderer/media/
H A Dmedia_stream_video_track.h72 FRIEND_TEST_ALL_PREFIXES(VideoDestinationHandlerTest, PutFrame);
/external/chromium_org/ppapi/c/
H A Dppb_media_stream_video_track.h239 * then use |PutFrame()| to send the frame back.
249 int32_t (*PutFrame)(PP_Resource video_track, PP_Resource frame); member in struct:PPB_MediaStreamVideoTrack_1_0
/external/chromium_org/content/renderer/pepper/
H A Dpepper_video_destination_host.cc90 frame_writer_->PutFrame(image_data_impl, timestamp_ns);
/external/chromium_org/ppapi/examples/video_effects/
H A Dvideo_effects.cc155 video_destination_.PutFrame(video_frame);
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
H A Dpnacl_shim.c1279 return iface->PutFrame(video_track, frame);
4332 return iface->PutFrame(destination, frame);
4805 .PutFrame = (int32_t (*)(PP_Resource video_track, PP_Resource frame))&Pnacl_M36_PPB_MediaStreamVideoTrack_PutFrame
5681 .PutFrame = (int32_t (*)(PP_Resource destination, const struct PP_VideoFrame_Private* frame))&Pnacl_M28_PPB_VideoDestination_Private_PutFrame,

Completed in 3930 milliseconds