codecctl.h 398 B

1234567891011121314151617181920
  1. // SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include "core/hle/service/service.h"
  5. namespace Core {
  6. class System;
  7. }
  8. namespace Service::Audio {
  9. class CodecCtl final : public ServiceFramework<CodecCtl> {
  10. public:
  11. explicit CodecCtl(Core::System& system_);
  12. ~CodecCtl() override;
  13. };
  14. } // namespace Service::Audio