Home | History | Annotate | Download | only in base

Lines Matching refs:Queue

18 // Maintains a queue of DecoderBuffers in increasing timestamp order.
21 // queue i.e., the queue must have at least 2 in-order buffers to calculate
30 // Push |buffer| to the end of the queue. If |buffer| is queued out of order
36 // Pops a DecoderBuffer from the front of the queue.
38 // It is invalid to call Pop() on an empty queue.
44 // Returns true if this queue is empty.
47 // Returns the duration of encoded data stored in this queue as measured by
51 // Returns zero if the queue is empty.
55 typedef std::deque<scoped_refptr<DecoderBuffer> > Queue;
56 Queue queue_;
61 Queue in_order_queue_;