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.
54 // Returns the total size of buffers inside the queue.
58 typedef std::deque<scoped_refptr<DecoderBuffer> > Queue;
59 Queue queue_;
64 Queue in_order_queue_;
68 // Total size in bytes of buffers in the queue.