/external/chromium_org/content/renderer/pepper/ |
D | video_decoder_shim.cc | 32 PendingDecode(uint32_t decode_id, 36 const uint32_t decode_id; member 41 uint32_t decode_id, in PendingDecode() argument 43 : decode_id(decode_id), buffer(buffer) { in PendingDecode() 50 explicit PendingFrame(uint32_t decode_id); 51 PendingFrame(uint32_t decode_id, 56 const uint32_t decode_id; member 66 VideoDecoderShim::PendingFrame::PendingFrame(uint32_t decode_id) in PendingFrame() argument 67 : decode_id(decode_id) { in PendingFrame() 70 VideoDecoderShim::PendingFrame::PendingFrame(uint32_t decode_id, in PendingFrame() argument [all …]
|
D | pepper_video_decoder_host.cc | 220 int32_t decode_id) { in OnHostMsgDecode() argument 231 if (pending_decodes_.find(decode_id) != pending_decodes_.end()) in OnHostMsgDecode() 238 decode_id, PendingDecode(shm_id, context->MakeReplyMessageContext()))); in OnHostMsgDecode() 242 media::BitstreamBuffer(decode_id, shm_buffers_[shm_id]->handle(), size)); in OnHostMsgDecode() 389 const uint8_t* PepperVideoDecoderHost::DecodeIdToAddress(uint32_t decode_id) { in DecodeIdToAddress() argument 390 PendingDecodeMap::const_iterator it = pending_decodes_.find(decode_id); in DecodeIdToAddress()
|
D | pepper_video_decoder_host.h | 80 int32_t decode_id); 92 const uint8_t* DecodeIdToAddress(uint32_t decode_id);
|
D | video_decoder_shim.h | 80 void OnDecodeComplete(int32_t result, uint32_t decode_id);
|
/external/chromium_org/ppapi/proxy/ |
D | video_decoder_resource_unittest.cc | 251 int32_t* decode_id) { in CheckDecodeMsg() argument 258 msg, shm_id, size, decode_id); in CheckDecodeMsg() 401 int32_t decode_id; in TEST_F() local 407 CheckDecodeMsg(¶ms, &shm_id, &decode_size, &decode_id); in TEST_F() 412 ASSERT_EQ(uid, decode_id); in TEST_F() 418 CheckDecodeMsg(¶ms, &shm_id, &decode_size, &decode_id); in TEST_F() 448 ASSERT_EQ(kDecodeId, picture.decode_id); in TEST_F() 457 ASSERT_EQ(kDecodeId, picture.decode_id); in TEST_F() 475 int32_t decode_id; in TEST_F() local 476 CheckDecodeMsg(¶ms, &shm_id, &decode_size, &decode_id); in TEST_F() [all …]
|
D | video_decoder_resource.cc | 52 VideoDecoderResource::Picture::Picture(int32_t decode_id, uint32_t texture_id) in Picture() argument 53 : decode_id(decode_id), texture_id(texture_id) { in Picture() 150 int32_t VideoDecoderResource::Decode(uint32_t decode_id, in Decode() argument 175 decode_ids_[uid % kMaximumPictureDelay] = decode_id; in Decode() 401 int32_t decode_id, in OnPluginMsgPictureReady() argument 403 received_pictures_.push(Picture(decode_id, texture_id)); in OnPluginMsgPictureReady() 518 pp_picture->decode_id = decode_ids_[picture.decode_id % kMaximumPictureDelay]; in WriteNextPicture()
|
D | video_decoder_resource.h | 55 virtual int32_t Decode(uint32_t decode_id, 99 Picture(int32_t decode_id, uint32_t texture_id); 102 int32_t decode_id; member 119 int32_t decode_id,
|
/external/chromium_org/ppapi/api/ |
D | pp_codecs.idl | 48 * which Decode call generated the picture using |decode_id|. 52 * |decode_id| parameter of the Decode call which generated this picture. 55 uint32_t decode_id;
|
D | ppb_video_decoder.idl | 132 * If the call to Decode() eventually results in a picture, the |decode_id| 140 * @param[in] decode_id An optional value, chosen by the plugin, that can be 157 [in] uint32_t decode_id,
|
/external/chromium_org/ppapi/cpp/ |
D | video_decoder.cc | 70 int32_t VideoDecoder::Decode(uint32_t decode_id, in Decode() argument 76 pp_resource(), decode_id, size, buffer, cc.pp_completion_callback()); in Decode() 80 pp_resource(), decode_id, size, buffer, cc.pp_completion_callback()); in Decode()
|
D | video_decoder.h | 111 int32_t Decode(uint32_t decode_id,
|
/external/chromium_org/ppapi/c/ |
D | ppb_video_decoder.h | 137 uint32_t decode_id, 231 uint32_t decode_id,
|
D | pp_codecs.h | 75 uint32_t decode_id; member
|
/external/chromium_org/ppapi/thunk/ |
D | ppb_video_decoder_thunk.cc | 65 uint32_t decode_id, in Decode() argument 73 return enter.SetResult(enter.object()->Decode(decode_id, in Decode()
|
D | ppb_video_decoder_api.h | 30 virtual int32_t Decode(uint32_t decode_id,
|
/external/chromium_org/native_client_sdk/src/examples/api/video_decode/ |
D | video_decode.cc | 342 decode_time_[picture.decode_id % kMaxDecodeDelay]; in PictureReady()
|
/external/chromium_org/ppapi/examples/video_decode/ |
D | video_decode.cc | 343 decode_time_[picture.decode_id % kMaxDecodeDelay]; in PictureReady()
|
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/ |
D | pnacl_shim.c | 1963 static int32_t Pnacl_M36_PPB_VideoDecoder_Decode(PP_Resource video_decoder, uint32_t decode_id, uin… in Pnacl_M36_PPB_VideoDecoder_Decode() argument 1965 return iface->Decode(video_decoder, decode_id, size, buffer, *callback); in Pnacl_M36_PPB_VideoDecoder_Decode() 2007 static int32_t Pnacl_M39_PPB_VideoDecoder_Decode(PP_Resource video_decoder, uint32_t decode_id, uin… in Pnacl_M39_PPB_VideoDecoder_Decode() argument 2009 return iface->Decode(video_decoder, decode_id, size, buffer, *callback); in Pnacl_M39_PPB_VideoDecoder_Decode() 5005 ….Decode = (int32_t (*)(PP_Resource video_decoder, uint32_t decode_id, uint32_t size, const void* b… 5016 ….Decode = (int32_t (*)(PP_Resource video_decoder, uint32_t decode_id, uint32_t size, const void* b…
|