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

  /external/chromium_org/ppapi/api/
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;
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/c/
pp_codecs.h 68 * which Decode call generated the picture using |decode_id|.
72 * |decode_id| parameter of the Decode call which generated this picture.
75 uint32_t decode_id; member in struct:PP_VideoPicture
ppb_video_decoder.h 113 * If the call to Decode() eventually results in a picture, the |decode_id|
121 * @param[in] decode_id An optional value, chosen by the plugin, that can be
137 uint32_t decode_id,
231 uint32_t decode_id,
  /external/chromium_org/content/renderer/pepper/
video_decoder_shim.cc 32 PendingDecode(uint32_t decode_id,
36 const uint32_t decode_id; member in struct:content::VideoDecoderShim::PendingDecode
41 uint32_t decode_id,
43 : decode_id(decode_id), buffer(buffer) {
50 explicit PendingFrame(uint32_t decode_id);
51 PendingFrame(uint32_t decode_id,
56 const uint32_t decode_id; member in struct:content::VideoDecoderShim::PendingFrame
66 VideoDecoderShim::PendingFrame::PendingFrame(uint32_t decode_id)
67 : decode_id(decode_id)
    [all...]
pepper_video_decoder_host.h 80 int32_t decode_id);
92 const uint8_t* DecodeIdToAddress(uint32_t decode_id);
pepper_video_decoder_host.cc 220 int32_t decode_id) {
230 // Reject non-unique decode_id values.
231 if (pending_decodes_.find(decode_id) != pending_decodes_.end())
238 decode_id, PendingDecode(shm_id, context->MakeReplyMessageContext())));
242 media::BitstreamBuffer(decode_id, shm_buffers_[shm_id]->handle(), size));
389 const uint8_t* PepperVideoDecoderHost::DecodeIdToAddress(uint32_t decode_id) {
390 PendingDecodeMap::const_iterator it = pending_decodes_.find(decode_id);
video_decoder_shim.h 80 void OnDecodeComplete(int32_t result, uint32_t decode_id);
  /external/chromium_org/ppapi/cpp/
video_decoder.h 91 /// If the call to Decode() eventually results in a picture, the |decode_id|
97 /// @param[in] decode_id An optional value, chosen by the plugin, that can be
111 int32_t Decode(uint32_t decode_id,
video_decoder.cc 70 int32_t VideoDecoder::Decode(uint32_t decode_id,
76 pp_resource(), decode_id, size, buffer, cc.pp_completion_callback());
80 pp_resource(), decode_id, size, buffer, cc.pp_completion_callback());
  /external/chromium_org/ppapi/proxy/
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 in struct:ppapi::proxy::VideoDecoderResource::Picture
119 int32_t decode_id,
video_decoder_resource.cc 52 VideoDecoderResource::Picture::Picture(int32_t decode_id, uint32_t texture_id)
53 : decode_id(decode_id), texture_id(texture_id) {
150 int32_t VideoDecoderResource::Decode(uint32_t decode_id,
173 // Save decode_id in a ring buffer. The ring buffer is sized to store
174 // decode_id for the maximum picture delay.
175 decode_ids_[uid % kMaximumPictureDelay] = decode_id;
401 int32_t decode_id,
403 received_pictures_.push(Picture(decode_id, texture_id));
517 // to us in the picture. Use this to get the plugin's decode_id
    [all...]
video_decoder_resource_unittest.cc 251 int32_t* decode_id) {
258 msg, shm_id, size, decode_id);
401 int32_t decode_id; local
407 CheckDecodeMsg(&params, &shm_id, &decode_size, &decode_id);
412 ASSERT_EQ(uid, decode_id);
418 CheckDecodeMsg(&params, &shm_id, &decode_size, &decode_id);
448 ASSERT_EQ(kDecodeId, picture.decode_id);
457 ASSERT_EQ(kDecodeId, picture.decode_id);
475 int32_t decode_id; local
476 CheckDecodeMsg(&params, &shm_id, &decode_size, &decode_id);
559 int32_t decode_id; local
    [all...]
  /external/chromium_org/ppapi/thunk/
ppb_video_decoder_api.h 30 virtual int32_t Decode(uint32_t decode_id,
ppb_video_decoder_thunk.cc 65 uint32_t decode_id,
73 return enter.SetResult(enter.object()->Decode(decode_id,
  /external/chromium_org/native_client_sdk/src/examples/api/video_decode/
video_decode.cc 342 decode_time_[picture.decode_id % kMaxDecodeDelay];
  /external/chromium_org/ppapi/examples/video_decode/
video_decode.cc 343 decode_time_[picture.decode_id % kMaxDecodeDelay];
  /external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
pnacl_shim.c     [all...]

Completed in 151 milliseconds