Home | History | Annotate | Download | only in pepper

Lines Matching defs:decode_id

32   PendingDecode(uint32_t decode_id,
36 const uint32_t decode_id;
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;
66 VideoDecoderShim::PendingFrame::PendingFrame(uint32_t decode_id)
67 : decode_id(decode_id) {
70 VideoDecoderShim::PendingFrame::PendingFrame(uint32_t decode_id,
73 : decode_id(decode_id),
92 void Decode(uint32_t decode_id, scoped_refptr<media::DecoderBuffer> buffer);
99 void OnDecodeComplete(uint32_t decode_id, media::VideoDecoder::Status status);
113 // that generated it. Save the decode_id from the last decode that completed,
160 uint32_t decode_id,
163 pending_decodes_.push(PendingDecode(decode_id, buffer));
172 scoped_ptr<PendingFrame> pending_frame(new PendingFrame(decode.decode_id));
177 decode.decode_id));
229 decode.decode_id));
235 uint32_t decode_id,
238 decode_id_ = decode_id;
258 &VideoDecoderShim::OnDecodeComplete, shim_, result, decode_id));
456 void VideoDecoderShim::OnDecodeComplete(int32_t result, uint32_t decode_id) {
466 completed_decodes_.push(decode_id);
538 media::Picture(texture_id, frame->decode_id, frame->visible_rect));