chromium/media/base/decoder_buffer_queue.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "media/base/decoder_buffer_queue.h"

#include "base/logging.h"
#include "media/base/decoder_buffer.h"
#include "media/base/timestamp_constants.h"

namespace media {

DecoderBufferQueue::DecoderBufferQueue()
    :{}

DecoderBufferQueue::~DecoderBufferQueue() = default;

// TODO(dalecurtis): This whole class can be simplified significantly; there's
// no reason to track an in order queue, instead track min + max timestamps.
void DecoderBufferQueue::Push(scoped_refptr<DecoderBuffer> buffer) {}

scoped_refptr<DecoderBuffer> DecoderBufferQueue::Pop() {}

void DecoderBufferQueue::Clear() {}

bool DecoderBufferQueue::IsEmpty() {}

base::TimeDelta DecoderBufferQueue::Duration() {}

}  // namespace media