/external/chromium_org/ppapi/cpp/private/ |
video_destination_private.h | 68 /// PutFrame(), there is the possibility of artifacts because the browser may 79 int32_t PutFrame(const VideoFrame_Private& frame);
|
video_destination_private.cc | 60 int32_t VideoDestination_Private::PutFrame( 63 return get_interface<PPB_VideoDestination_Private_0_1>()->PutFrame(
|
/external/chromium_org/ppapi/thunk/ |
ppb_video_destination_private_api.h | 25 virtual int32_t PutFrame(const PP_VideoFrame_Private& frame) = 0;
|
ppb_video_destination_private_thunk.cc | 43 int32_t PutFrame(PP_Resource destination, 48 return enter.object()->PutFrame(*frame); 62 &PutFrame,
|
ppb_media_stream_video_track_api.h | 29 virtual int32_t PutFrame(PP_Resource frame) = 0;
|
ppb_media_stream_video_track_thunk.cc | 114 int32_t PutFrame(PP_Resource video_track, PP_Resource frame) { 115 VLOG(4) << "PPB_MediaStreamVideoTrack::PutFrame()"; 119 return enter.object()->PutFrame(frame); 144 &PutFrame
|
/external/chromium_org/content/renderer/media/webrtc/ |
video_destination_handler.h | 29 virtual void PutFrame(PPB_ImageData_Impl* image_data, 48 virtual void PutFrame(PPB_ImageData_Impl* image_data,
|
video_destination_handler_unittest.cc | 70 TEST_F(VideoDestinationHandlerTest, PutFrame) { 99 frame_writer->PutFrame(image.get(), 10);
|
video_destination_handler.cc | 110 void PpFrameWriter::PutFrame(PPB_ImageData_Impl* image_data, 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/api/private/ |
ppb_video_destination_private.idl | 84 int32_t PutFrame([in] PP_Resource destination,
|
/external/chromium_org/ppapi/c/private/ |
ppb_video_destination_private.h | 105 int32_t (*PutFrame)(PP_Resource destination,
|
/external/chromium_org/ppapi/proxy/ |
video_destination_resource.h | 40 virtual int32_t PutFrame(const PP_VideoFrame_Private& frame) OVERRIDE;
|
media_stream_video_track_resource.h | 50 virtual int32_t PutFrame(PP_Resource frame) OVERRIDE;
|
video_destination_resource.cc | 59 int32_t VideoDestinationResource::PutFrame( 74 "VideoDestinationPrivateResource.PutFrame: Bad image resource.");
|
media_stream_video_track_resource.cc | 166 int32_t MediaStreamVideoTrackResource::PutFrame(PP_Resource frame) { 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/cpp/ |
media_stream_video_track.h | 143 // then use |PutFrame()| to send the frame back. 150 int32_t PutFrame(const VideoFrame& frame);
|
media_stream_video_track.cc | 148 int32_t MediaStreamVideoTrack::PutFrame(const VideoFrame& frame) { 150 return get_interface<PPB_MediaStreamVideoTrack_1_0>()->PutFrame(
|
/external/chromium_org/ppapi/tests/ |
test_video_destination.cc | 62 RUN_TEST(PutFrame, filter); 121 ASSERT_EQ(PP_OK, video_destination.PutFrame(video_frame));
|
/external/chromium_org/ppapi/api/ |
ppb_media_stream_video_track.idl | 232 * 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/ |
media_stream_video_track.h | 72 FRIEND_TEST_ALL_PREFIXES(VideoDestinationHandlerTest, PutFrame);
|
/external/chromium_org/ppapi/c/ |
ppb_media_stream_video_track.h | 239 * then use |PutFrame()| to send the frame back. 249 int32_t (*PutFrame)(PP_Resource video_track, PP_Resource frame);
|
/external/chromium_org/content/renderer/pepper/ |
pepper_video_destination_host.cc | 90 frame_writer_->PutFrame(image_data_impl, timestamp_ns);
|
/external/chromium_org/ppapi/examples/video_effects/ |
video_effects.cc | 155 video_destination_.PutFrame(video_frame);
|
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/ |
pnacl_shim.c | [all...] |