chromium/media/gpu/vaapi/test/fake_libva_driver/vpx_decoder_delegate.h

// 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_VAAPI_TEST_FAKE_LIBVA_DRIVER_VPX_DECODER_DELEGATE_H_
#define MEDIA_GPU_VAAPI_TEST_FAKE_LIBVA_DRIVER_VPX_DECODER_DELEGATE_H_

#include "media/gpu/vaapi/test/fake_libva_driver/context_delegate.h"

#include <va/va.h>

struct vpx_codec_ctx;

namespace media::internal {

// Class used for libvpx software decoding.
class VpxDecoderDelegate : public ContextDelegate {};

}  // namespace media::internal

#endif  // MEDIA_GPU_VAAPI_TEST_FAKE_LIBVA_DRIVER_VPX_DECODER_DELEGATE_H_