// 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_VP9_RAW_BITS_READER_H_ #define MEDIA_PARSERS_VP9_RAW_BITS_READER_H_ #include <stddef.h> #include <stdint.h> #include <memory> #include "media/base/media_export.h" namespace media { class BitReader; // A class to read raw bits stream. See VP9 spec, "RAW-BITS DECODING" section // for detail. class MEDIA_EXPORT Vp9RawBitsReader { … }; } // namespace media #endif // MEDIA_PARSERS_VP9_RAW_BITS_READER_H_