2018-01-21 19:03:36 -08:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
|
2020-11-26 15:19:08 -05:00
|
|
|
namespace Core {
|
|
|
|
|
class System;
|
2018-01-21 19:03:36 -08:00
|
|
|
}
|
|
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
namespace Service::Audio {
|
2018-01-21 19:03:36 -08:00
|
|
|
|
|
|
|
|
class CodecCtl final : public ServiceFramework<CodecCtl> {
|
|
|
|
|
public:
|
2020-11-26 15:19:08 -05:00
|
|
|
explicit CodecCtl(Core::System& system_);
|
2018-09-10 21:20:52 -04:00
|
|
|
~CodecCtl() override;
|
2018-01-21 19:03:36 -08:00
|
|
|
};
|
|
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
} // namespace Service::Audio
|