// Copyright 2024 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_GPU_AV1_BUILDER_H_ #define MEDIA_GPU_AV1_BUILDER_H_ #include <optional> #include <vector> #include "media/gpu/media_gpu_export.h" #include "third_party/libgav1/src/src/utils/constants.h" #include "third_party/libgav1/src/src/utils/types.h" namespace media { // Helper class for AV1 to write packed bitstream data. class MEDIA_GPU_EXPORT AV1BitstreamBuilder { … }; // Parameters used to build OBUs. struct AV1BitstreamBuilder::SequenceHeader { … }; struct AV1BitstreamBuilder::FrameHeader { … }; } // namespace media #endif // MEDIA_GPU_AV1_BUILDER_H_