chromium/media/base/byte_queue.cc

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

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#include "media/base/byte_queue.h"

#include <algorithm>
#include <cstring>

#include "base/check_op.h"
#include "base/numerics/checked_math.h"
#include "base/process/memory.h"

namespace media {

ByteQueue::ByteQueue() {}

ByteQueue::~ByteQueue() = default;

void ByteQueue::Reset() {}

bool ByteQueue::Push(base::span<const uint8_t> data) {}

void ByteQueue::Peek(const uint8_t** data, int* size) const {}

void ByteQueue::Pop(int count) {}

uint8_t* ByteQueue::Front() const {}

}  // namespace media