chromium/media/parsers/ivf_parser.h

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

#ifndef MEDIA_PARSERS_IVF_PARSER_H_
#define MEDIA_PARSERS_IVF_PARSER_H_

#include <stddef.h>
#include <stdint.h>

#include "base/memory/raw_ptr.h"

namespace media {

const uint8_t kIvfHeaderSignature[] =;

#pragma pack(push, 1)
struct IvfFileHeader {};
static_assert;

struct IvfFrameHeader {};
static_assert;
#pragma pack(pop)

// IVF is a simple container format for video frame. It is used by libvpx to
// transport VP8 and VP9 bitstream.
class IvfParser {};

}  // namespace media

#endif  // MEDIA_PARSERS_IVF_PARSER_H_