mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-22 06:32:56 +00:00
47 lines
1.3 KiB
C#
47 lines
1.3 KiB
C#
using Ryujinx.Horizon.Sdk.Codec.Detail;
|
|
using Ryujinx.Horizon.Sdk.Sf.Hipc;
|
|
using Ryujinx.Horizon.Sdk.Sm;
|
|
|
|
namespace Ryujinx.Horizon.Audio
|
|
{
|
|
class HwopusIpcServer
|
|
{
|
|
private const int MaxSessionsCount = 25;
|
|
|
|
private const int PointerBufferSize = 0x1000;
|
|
private const int MaxDomains = 8;
|
|
private const int MaxDomainObjects = 256;
|
|
private const int MaxPortsCount = 1;
|
|
|
|
private static readonly ManagerOptions _options = new(PointerBufferSize, MaxDomains, MaxDomainObjects, false);
|
|
|
|
private SmApi _sm;
|
|
private ServerManager _serverManager;
|
|
|
|
public void Initialize()
|
|
{
|
|
HeapAllocator allocator = new();
|
|
|
|
_sm = new SmApi();
|
|
_sm.Initialize().AbortOnFailure();
|
|
|
|
_serverManager = new ServerManager(allocator, _sm, MaxPortsCount, _options, MaxSessionsCount);
|
|
|
|
HardwareOpusDecoderManager hardwareOpusDecoderManager = new();
|
|
|
|
_serverManager.RegisterObjectForServer(hardwareOpusDecoderManager, ServiceName.Encode("hwopus"), MaxSessionsCount);
|
|
}
|
|
|
|
public void ServiceRequests()
|
|
{
|
|
_serverManager.ServiceRequests();
|
|
}
|
|
|
|
public void Shutdown()
|
|
{
|
|
_serverManager.Dispose();
|
|
_sm.Dispose();
|
|
}
|
|
}
|
|
}
|