// Copyright 2023 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_TEST_VIDEO_BITSTREAM_H_ #define MEDIA_GPU_TEST_VIDEO_BITSTREAM_H_ #include <memory> #include <string> #include <vector> #include "base/containers/span.h" #include "base/files/file_path.h" #include "base/time/time.h" #include "media/base/video_codecs.h" #include "ui/gfx/geometry/rect.h" #include "ui/gfx/geometry/size.h" namespace base { class MemoryMappedFile; } // namespace base namespace media::test { // VideoBitstream owns the compressed video data (e.g. h264 and vp9) and // provides the information about the video. class VideoBitstream final { … }; } // namespace media::test #endif // MEDIA_GPU_TEST_VIDEO_BITSTREAM_H_