2021-02-26 01:11:56 +01:00
|
|
|
using Ryujinx.Audio.Integration;
|
2020-08-18 03:49:37 +02:00
|
|
|
using Ryujinx.Audio.Renderer.Server;
|
|
|
|
using Ryujinx.Common;
|
|
|
|
using Ryujinx.Common.Logging;
|
2020-12-02 00:23:43 +01:00
|
|
|
using Ryujinx.Memory;
|
2020-08-18 03:49:37 +02:00
|
|
|
using System;
|
2021-07-18 13:05:11 +02:00
|
|
|
using System.Buffers;
|
2020-08-18 03:49:37 +02:00
|
|
|
using System.Collections.Generic;
|
2021-07-18 13:05:11 +02:00
|
|
|
using System.Runtime.CompilerServices;
|
2020-08-18 03:49:37 +02:00
|
|
|
|
|
|
|
namespace Ryujinx.Audio.Renderer.Dsp.Command
|
|
|
|
{
|
2021-07-18 13:05:11 +02:00
|
|
|
public class CommandList : IDisposable
|
2020-08-18 03:49:37 +02:00
|
|
|
{
|
|
|
|
public ulong StartTime { get; private set; }
|
|
|
|
public ulong EndTime { get; private set; }
|
|
|
|
public uint SampleCount { get; }
|
|
|
|
public uint SampleRate { get; }
|
|
|
|
|
|
|
|
public Memory<float> Buffers { get; }
|
|
|
|
public uint BufferCount { get; }
|
|
|
|
|
|
|
|
public List<ICommand> Commands { get; }
|
|
|
|
|
2020-12-02 00:23:43 +01:00
|
|
|
public IVirtualMemoryManager MemoryManager { get; }
|
2020-08-18 03:49:37 +02:00
|
|
|
|
2021-02-26 01:11:56 +01:00
|
|
|
public IHardwareDevice OutputDevice { get; private set; }
|
2020-08-18 03:49:37 +02:00
|
|
|
|
2021-07-18 13:05:11 +02:00
|
|
|
private readonly int _sampleCount;
|
|
|
|
private readonly int _buffersEntryCount;
|
|
|
|
private readonly MemoryHandle _buffersMemoryHandle;
|
|
|
|
|
2020-08-18 03:49:37 +02:00
|
|
|
public CommandList(AudioRenderSystem renderSystem) : this(renderSystem.MemoryManager,
|
|
|
|
renderSystem.GetMixBuffer(),
|
|
|
|
renderSystem.GetSampleCount(),
|
|
|
|
renderSystem.GetSampleRate(),
|
|
|
|
renderSystem.GetMixBufferCount(),
|
|
|
|
renderSystem.GetVoiceChannelCountMax())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-12-02 00:23:43 +01:00
|
|
|
public CommandList(IVirtualMemoryManager memoryManager, Memory<float> mixBuffer, uint sampleCount, uint sampleRate, uint mixBufferCount, uint voiceChannelCountMax)
|
2020-08-18 03:49:37 +02:00
|
|
|
{
|
|
|
|
SampleCount = sampleCount;
|
2021-07-18 13:05:11 +02:00
|
|
|
_sampleCount = (int)SampleCount;
|
2020-08-18 03:49:37 +02:00
|
|
|
SampleRate = sampleRate;
|
|
|
|
BufferCount = mixBufferCount + voiceChannelCountMax;
|
|
|
|
Buffers = mixBuffer;
|
|
|
|
Commands = new List<ICommand>();
|
|
|
|
MemoryManager = memoryManager;
|
2021-07-18 13:05:11 +02:00
|
|
|
|
|
|
|
_buffersEntryCount = Buffers.Length;
|
|
|
|
_buffersMemoryHandle = Buffers.Pin();
|
2020-08-18 03:49:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void AddCommand(ICommand command)
|
|
|
|
{
|
|
|
|
Commands.Add(command);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void AddCommand<T>(T command) where T : unmanaged, ICommand
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
|
2021-07-18 13:05:11 +02:00
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
public unsafe IntPtr GetBufferPointer(int index)
|
|
|
|
{
|
|
|
|
if (index >= 0 && index < _buffersEntryCount)
|
|
|
|
{
|
|
|
|
return (IntPtr)((float*)_buffersMemoryHandle.Pointer + index * _sampleCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new ArgumentOutOfRangeException();
|
|
|
|
}
|
|
|
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
public unsafe void ClearBuffer(int index)
|
|
|
|
{
|
|
|
|
Unsafe.InitBlock((void*)GetBufferPointer(index), 0, SampleCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
public unsafe void ClearBuffers()
|
2020-08-18 03:49:37 +02:00
|
|
|
{
|
2021-07-18 13:05:11 +02:00
|
|
|
Unsafe.InitBlock(_buffersMemoryHandle.Pointer, 0, (uint)_buffersEntryCount * sizeof(float));
|
2020-08-18 03:49:37 +02:00
|
|
|
}
|
|
|
|
|
2021-07-18 13:05:11 +02:00
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
public unsafe void CopyBuffer(int outputBufferIndex, int inputBufferIndex)
|
|
|
|
{
|
|
|
|
Unsafe.CopyBlock((void*)GetBufferPointer(outputBufferIndex), (void*)GetBufferPointer(inputBufferIndex), SampleCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
2020-08-18 03:49:37 +02:00
|
|
|
public Span<float> GetBuffer(int index)
|
|
|
|
{
|
2021-07-18 13:05:11 +02:00
|
|
|
if (index < 0 || index >= _buffersEntryCount)
|
|
|
|
{
|
|
|
|
return Span<float>.Empty;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe
|
|
|
|
{
|
|
|
|
return new Span<float>((float*)_buffersMemoryHandle.Pointer + index * _sampleCount, _sampleCount);
|
|
|
|
}
|
2020-08-18 03:49:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public ulong GetTimeElapsedSinceDspStartedProcessing()
|
|
|
|
{
|
|
|
|
return (ulong)PerformanceCounter.ElapsedNanoseconds - StartTime;
|
|
|
|
}
|
|
|
|
|
2021-02-26 01:11:56 +01:00
|
|
|
public void Process(IHardwareDevice outputDevice)
|
2020-08-18 03:49:37 +02:00
|
|
|
{
|
|
|
|
OutputDevice = outputDevice;
|
|
|
|
|
|
|
|
StartTime = (ulong)PerformanceCounter.ElapsedNanoseconds;
|
|
|
|
|
|
|
|
foreach (ICommand command in Commands)
|
|
|
|
{
|
|
|
|
if (command.Enabled)
|
|
|
|
{
|
|
|
|
bool shouldMeter = command.ShouldMeter();
|
|
|
|
|
|
|
|
long startTime = 0;
|
|
|
|
|
|
|
|
if (shouldMeter)
|
|
|
|
{
|
|
|
|
startTime = PerformanceCounter.ElapsedNanoseconds;
|
|
|
|
}
|
|
|
|
|
|
|
|
command.Process(this);
|
|
|
|
|
|
|
|
if (shouldMeter)
|
|
|
|
{
|
|
|
|
ulong effectiveElapsedTime = (ulong)(PerformanceCounter.ElapsedNanoseconds - startTime);
|
|
|
|
|
|
|
|
if (effectiveElapsedTime > command.EstimatedProcessingTime)
|
|
|
|
{
|
|
|
|
Logger.Warning?.Print(LogClass.AudioRenderer, $"Command {command.GetType().Name} took {effectiveElapsedTime}ns (expected {command.EstimatedProcessingTime}ns)");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EndTime = (ulong)PerformanceCounter.ElapsedNanoseconds;
|
|
|
|
}
|
2021-07-18 13:05:11 +02:00
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
_buffersMemoryHandle.Dispose();
|
|
|
|
}
|
2020-08-18 03:49:37 +02:00
|
|
|
}
|
2022-07-25 20:46:33 +02:00
|
|
|
}
|