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

// Copyright 2022 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_FAKE_DRIVER_H_
#define MEDIA_GPU_VAAPI_TEST_FAKE_LIBVA_DRIVER_FAKE_DRIVER_H_

#include <va/va.h>

#include "media/gpu/vaapi/test/fake_libva_driver/fake_buffer.h"
#include "media/gpu/vaapi/test/fake_libva_driver/fake_config.h"
#include "media/gpu/vaapi/test/fake_libva_driver/fake_context.h"
#include "media/gpu/vaapi/test/fake_libva_driver/fake_image.h"
#include "media/gpu/vaapi/test/fake_libva_driver/fake_surface.h"
#include "media/gpu/vaapi/test/fake_libva_driver/object_tracker.h"
#include "media/gpu/vaapi/test/fake_libva_driver/scoped_bo_mapping_factory.h"

namespace media::internal {

// FakeDriver is used to keep track of all the state that exists between a call
// to vaInitialize() and a call to vaTerminate(). All public methods are
// thread-safe.
class FakeDriver {};

}  // namespace media::internal

#endif  // MEDIA_GPU_VAAPI_TEST_FAKE_LIBVA_DRIVER_FAKE_DRIVER_H_