// Copyright 2020 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_BITSTREAM_HELPERS_H_ #define MEDIA_GPU_TEST_BITSTREAM_HELPERS_H_ #include "base/functional/callback.h" #include "base/memory/ref_counted.h" #include "base/time/time.h" #include "media/video/video_encode_accelerator.h" namespace media { class DecoderBuffer; namespace test { // This class defines an abstract interface for classes that are interested in // processing bitstreams (e.g. BitstreamValidator, DecoderBufferValidator, ...). class BitstreamProcessor { … }; } // namespace test } // namespace media #endif // MEDIA_GPU_TEST_BITSTREAM_HELPERS_H_