diff options
Diffstat (limited to 'media/base/byte_queue.cc')
-rw-r--r-- | media/base/byte_queue.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/media/base/byte_queue.cc b/media/base/byte_queue.cc index 8f4fee8..e91bfb7 100644 --- a/media/base/byte_queue.cc +++ b/media/base/byte_queue.cc @@ -20,6 +20,11 @@ ByteQueue::ByteQueue() ByteQueue::~ByteQueue() {} +void ByteQueue::Reset() { + offset_ = 0; + used_ = 0; +} + void ByteQueue::Push(const uint8* data, int size) { DCHECK(data); DCHECK_GT(size, 0); |