HomeSort by relevance Sort by last modified time
    Searched defs:PictureReady (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/ppapi/c/dev/
ppp_video_decoder_dev.h 82 void (*PictureReady)(PP_Instance instance,
  /external/chromium_org/ppapi/cpp/dev/
video_decoder_client_dev.cc 45 void PictureReady(PP_Instance instance,
52 static_cast<VideoDecoderClient_Dev*>(object)->PictureReady(decoder, *picture);
68 &PictureReady,
  /external/chromium_org/ppapi/proxy/
ppp_video_decoder_proxy.cc 45 void PictureReady(PP_Instance instance, PP_Resource decoder,
74 &PictureReady,
152 CallWhileUnlocked(ppp_video_decoder_impl_->PictureReady,
  /external/chromium_org/content/renderer/pepper/
pepper_video_decoder_host.cc 316 void PepperVideoDecoderHost::PictureReady(const media::Picture& picture) {
ppb_video_decoder_impl.cc 248 void PPB_VideoDecoder_Impl::PictureReady(const media::Picture& picture) {
258 ppp_videodecoder_->PictureReady(pp_instance(), pp_resource(), &output);
  /external/chromium_org/content/common/gpu/media/
gpu_video_decode_accelerator.cc 199 void GpuVideoDecodeAccelerator::PictureReady(
201 // VDA may call PictureReady on IO thread. SetTextureCleared should run on
202 // the child thread. VDA is responsible to call PictureReady on the child
video_decode_accelerator_unittest.cc 240 virtual void PictureReady(const media::Picture& picture) OVERRIDE;
463 void GLRenderingVDAClient::PictureReady(const media::Picture& picture) {
    [all...]
  /external/chromium_org/content/renderer/media/
rtc_video_decoder.cc 354 void RTCVideoDecoder::PictureReady(const media::Picture& picture) {
355 DVLOG(3) << "PictureReady";
  /external/chromium_org/media/filters/
gpu_video_decoder.cc 412 void GpuVideoDecoder::PictureReady(const media::Picture& picture) {
413 DVLOG(3) << "PictureReady()";
  /external/chromium_org/ppapi/examples/video_decode/
video_decode_dev.cc 84 virtual void PictureReady(PP_Resource decoder, const PP_Picture_Dev& picture);
411 void VideoDecodeDemoInstance::PictureReady(PP_Resource decoder,
535 PictureReady(decoder_picture.first, decoder_picture.second);
video_decode.cc 174 void PictureReady(int32_t result, PP_VideoPicture picture);
278 // PictureReady to continuously receive pictures as they're decoded.
280 callback_factory_.NewCallbackWithOutput(&Decoder::PictureReady));
334 void Decoder::PictureReady(int32_t result, PP_VideoPicture picture) {
347 callback_factory_.NewCallbackWithOutput(&Decoder::PictureReady));
  /external/chromium_org/native_client_sdk/src/examples/api/video_decode/
video_decode.cc 173 void PictureReady(int32_t result, PP_VideoPicture picture);
277 // PictureReady to continuously receive pictures as they're decoded.
279 callback_factory_.NewCallbackWithOutput(&Decoder::PictureReady));
333 void Decoder::PictureReady(int32_t result, PP_VideoPicture picture) {
346 callback_factory_.NewCallbackWithOutput(&Decoder::PictureReady));

Completed in 813 milliseconds