2020-08-18 01:49:37 +00:00
|
|
|
using Ryujinx.Audio.Renderer.Common;
|
|
|
|
using Ryujinx.Audio.Renderer.Parameter;
|
|
|
|
using Ryujinx.Audio.Renderer.Server.Effect;
|
|
|
|
using Ryujinx.Audio.Renderer.Server.Splitter;
|
|
|
|
using Ryujinx.Common.Utilities;
|
|
|
|
using System;
|
|
|
|
using System.Diagnostics;
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
using System.Runtime.InteropServices;
|
2021-02-26 00:11:56 +00:00
|
|
|
using static Ryujinx.Audio.Constants;
|
2020-08-18 01:49:37 +00:00
|
|
|
|
|
|
|
namespace Ryujinx.Audio.Renderer.Server.Mix
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Server state for a mix.
|
|
|
|
/// </summary>
|
|
|
|
[StructLayout(LayoutKind.Sequential, Size = 0x940, Pack = Alignment)]
|
|
|
|
public struct MixState
|
|
|
|
{
|
|
|
|
public const uint InvalidDistanceFromFinalMix = 0x80000000;
|
|
|
|
|
|
|
|
public const int Alignment = 0x10;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Base volume of the mix.
|
|
|
|
/// </summary>
|
|
|
|
public float Volume;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Target sample rate of the mix.
|
|
|
|
/// </summary>
|
|
|
|
public uint SampleRate;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Target buffer count.
|
|
|
|
/// </summary>
|
|
|
|
public uint BufferCount;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Set to true if in use.
|
|
|
|
/// </summary>
|
|
|
|
[MarshalAs(UnmanagedType.I1)]
|
|
|
|
public bool IsUsed;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The id of the mix.
|
|
|
|
/// </summary>
|
|
|
|
public int MixId;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The mix node id.
|
|
|
|
/// </summary>
|
|
|
|
public int NodeId;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// the buffer offset to use for command generation.
|
|
|
|
/// </summary>
|
|
|
|
public uint BufferOffset;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The distance of the mix from the final mix.
|
|
|
|
/// </summary>
|
|
|
|
public uint DistanceFromFinalMix;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The effect processing order storage.
|
|
|
|
/// </summary>
|
2023-07-01 23:27:18 +00:00
|
|
|
private readonly IntPtr _effectProcessingOrderArrayPointer;
|
2020-08-18 01:49:37 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The max element count that can be found in the effect processing order storage.
|
|
|
|
/// </summary>
|
|
|
|
public uint EffectProcessingOrderArrayMaxCount;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The mix to output the result of this mix.
|
|
|
|
/// </summary>
|
|
|
|
public int DestinationMixId;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Mix buffer volumes storage.
|
|
|
|
/// </summary>
|
|
|
|
private MixVolumeArray _mixVolumeArray;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The splitter to output the result of this mix.
|
|
|
|
/// </summary>
|
|
|
|
public uint DestinationSplitterId;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// If set to true, the long size pre-delay is supported on the reverb command.
|
|
|
|
/// </summary>
|
|
|
|
[MarshalAs(UnmanagedType.I1)]
|
|
|
|
public bool IsLongSizePreDelaySupported;
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, Size = Size, Pack = 1)]
|
|
|
|
private struct MixVolumeArray
|
|
|
|
{
|
|
|
|
private const int Size = 4 * MixBufferCountMax * MixBufferCountMax;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Mix buffer volumes.
|
|
|
|
/// </summary>
|
|
|
|
/// <remarks>Used when no splitter id is specified.</remarks>
|
|
|
|
public Span<float> MixBufferVolume => SpanHelpers.AsSpan<MixVolumeArray, float>(ref _mixVolumeArray);
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Get the volume for a given connection destination.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="sourceIndex">The source node index.</param>
|
|
|
|
/// <param name="destinationIndex">The destination node index</param>
|
|
|
|
/// <returns>The volume for the given connection destination.</returns>
|
|
|
|
public float GetMixBufferVolume(int sourceIndex, int destinationIndex)
|
|
|
|
{
|
|
|
|
return MixBufferVolume[sourceIndex * MixBufferCountMax + destinationIndex];
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The array used to order effects associated to this mix.
|
|
|
|
/// </summary>
|
2023-07-01 23:27:18 +00:00
|
|
|
public readonly Span<int> EffectProcessingOrderArray
|
2020-08-18 01:49:37 +00:00
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
if (_effectProcessingOrderArrayPointer == IntPtr.Zero)
|
|
|
|
{
|
|
|
|
return Span<int>.Empty;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe
|
|
|
|
{
|
|
|
|
return new Span<int>((void*)_effectProcessingOrderArrayPointer, (int)EffectProcessingOrderArrayMaxCount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Create a new <see cref="MixState"/>
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="effectProcessingOrderArray"></param>
|
|
|
|
/// <param name="behaviourContext"></param>
|
|
|
|
public MixState(Memory<int> effectProcessingOrderArray, ref BehaviourContext behaviourContext) : this()
|
|
|
|
{
|
|
|
|
MixId = UnusedMixId;
|
|
|
|
|
|
|
|
DistanceFromFinalMix = InvalidDistanceFromFinalMix;
|
|
|
|
|
|
|
|
DestinationMixId = UnusedMixId;
|
|
|
|
|
|
|
|
DestinationSplitterId = UnusedSplitterId;
|
|
|
|
|
|
|
|
unsafe
|
|
|
|
{
|
|
|
|
// SAFETY: safe as effectProcessingOrderArray comes from the work buffer memory that is pinned.
|
|
|
|
_effectProcessingOrderArrayPointer = (IntPtr)Unsafe.AsPointer(ref MemoryMarshal.GetReference(effectProcessingOrderArray.Span));
|
|
|
|
}
|
|
|
|
|
|
|
|
EffectProcessingOrderArrayMaxCount = (uint)effectProcessingOrderArray.Length;
|
|
|
|
|
|
|
|
IsLongSizePreDelaySupported = behaviourContext.IsLongSizePreDelaySupported();
|
|
|
|
|
|
|
|
ClearEffectProcessingOrder();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Clear the <see cref="DistanceFromFinalMix"/> value to its default state.
|
|
|
|
/// </summary>
|
|
|
|
public void ClearDistanceFromFinalMix()
|
|
|
|
{
|
|
|
|
DistanceFromFinalMix = InvalidDistanceFromFinalMix;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Clear the <see cref="EffectProcessingOrderArray"/> to its default state.
|
|
|
|
/// </summary>
|
2023-07-01 23:27:18 +00:00
|
|
|
public readonly void ClearEffectProcessingOrder()
|
2020-08-18 01:49:37 +00:00
|
|
|
{
|
|
|
|
EffectProcessingOrderArray.Fill(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Return true if the mix has any destinations.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>True if the mix has any destinations.</returns>
|
2023-07-01 23:27:18 +00:00
|
|
|
public readonly bool HasAnyDestination()
|
2020-08-18 01:49:37 +00:00
|
|
|
{
|
|
|
|
return DestinationMixId != UnusedMixId || DestinationSplitterId != UnusedSplitterId;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Update the mix connection on the adjacency matrix.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="edgeMatrix">The adjacency matrix.</param>
|
|
|
|
/// <param name="parameter">The input parameter of the mix.</param>
|
|
|
|
/// <param name="splitterContext">The splitter context.</param>
|
|
|
|
/// <returns>Return true, new connections were done on the adjacency matrix.</returns>
|
Audio rendering: reduce memory allocations (#6604)
* - WritableRegion: enable wrapping IMemoryOwner<byte>
- IVirtualMemoryManager impls of GetWritableRegion() use pooled memory when region is non-contiguous.
- IVirtualMemoryManager: add GetReadOnlySequence() and impls
- ByteMemoryPool: add new method RentCopy()
- ByteMemoryPool: make class static, remove ctor and singleton field from earlier impl
* - BytesReadOnlySequenceSegment: move from Ryujinx.Common.Memory to Ryujinx.Memory
- BytesReadOnlySequenceSegment: add IsContiguousWith() and Replace() methods
- VirtualMemoryManagerBase:
- remove generic type parameters, instead use ulong for virtual addresses and nuint for host/physical addresses
- implement IWritableBlock
- add virtual GetReadOnlySequence() with coalescing of contiguous segments
- add virtual GetSpan()
- add virtual GetWritableRegion()
- add abstract IsMapped()
- add virtual MapForeign(ulong, nuint, ulong)
- add virtual Read<T>()
- add virtual Read(ulong, Span<byte>)
- add virtual ReadTracked<T>()
- add virtual SignalMemoryTracking()
- add virtual Write()
- add virtual Write<T>()
- add virtual WriteUntracked()
- add virtual WriteWithRedundancyCheck()
- VirtualMemoryManagerRefCountedBase: remove generic type parameters
- AddressSpaceManager: remove redundant methods, add required overrides
- HvMemoryManager: remove redundant methods, add required overrides, add overrides for _invalidAccessHandler handling
- MemoryManager: remove redundant methods, add required overrides, add overrides for _invalidAccessHandler handling
- MemoryManagerHostMapped: remove redundant methods, add required overrides, add overrides for _invalidAccessHandler handling
- NativeMemoryManager: add get properties for Pointer and Length
- throughout: removed invalid <inheritdoc/> comments
* - WritableRegion: enable wrapping IMemoryOwner<byte>
- IVirtualMemoryManager impls of GetWritableRegion() use pooled memory when region is non-contiguous.
- IVirtualMemoryManager: add GetReadOnlySequence() and impls
- ByteMemoryPool: add new method RentCopy()
- ByteMemoryPool: make class static, remove ctor and singleton field from earlier impl
* add PagedMemoryRange enumerator types, use them in IVirtualMemoryManager implementations to consolidate page-handling logic and add a new capability - the coalescing of pages for consolidating memory copies and segmentation.
* new: more tests for PagedMemoryRangeCoalescingEnumerator showing coalescing of contiguous segments
* make some struct properties readonly
* put braces around `foreach` bodies
* encourage inlining of some PagedMemoryRange*Enumerator members
* DynamicRingBuffer:
- use ByteMemoryPool
- make some methods return without locking when size/count argument = 0
- make generic Read<T>()/Write<T>() non-generic because its only usage is as T = byte
- change Read(byte[]...) to Read(Span<byte>...)
- change Write(byte[]...) to Write(Span<byte>...)
* change IAudioRenderer.RequestUpdate() to take a ReadOnlySequence<byte>, enabling zero-copy audio rendering
* HipcGenerator: support ReadOnlySequence<byte> as IPC method parameter
* change IAudioRenderer/AudioRenderer RequestUpdate* methods to take input as ReadOnlySequence<byte>
* MemoryManagerHostTracked: use rented memory when contiguous in `GetWritableRegion()`
* rebase cleanup
* dotnet format fixes
* format and comment fixes
* format long parameter list - take 2
* - add support to HipcGenerator for buffers of type `Memory<byte>`
- change `AudioRenderer` `RequestUpdate()` and `RequestUpdateAuto()` to use Memory<byte> for output buffers, removing another memory block allocation/copy
* SplitterContext `UpdateState()` and `UpdateData()` smooth out advance/rewind logic, only rewind if magic is invalid
* DynamicRingBuffer.Write(): change Span<byte> to ReadOnlySpan<byte>
2024-04-07 21:07:32 +00:00
|
|
|
private bool UpdateConnection(EdgeMatrix edgeMatrix, in MixParameter parameter, ref SplitterContext splitterContext)
|
2020-08-18 01:49:37 +00:00
|
|
|
{
|
|
|
|
bool hasNewConnections;
|
|
|
|
|
|
|
|
if (DestinationSplitterId == UnusedSplitterId)
|
|
|
|
{
|
|
|
|
hasNewConnections = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ref SplitterState splitter = ref splitterContext.GetState((int)DestinationSplitterId);
|
|
|
|
|
|
|
|
hasNewConnections = splitter.HasNewConnection;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DestinationMixId == parameter.DestinationMixId && DestinationSplitterId == parameter.DestinationSplitterId && !hasNewConnections)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
edgeMatrix.RemoveEdges(MixId);
|
|
|
|
|
|
|
|
if (parameter.DestinationMixId == UnusedMixId)
|
|
|
|
{
|
|
|
|
if (parameter.DestinationSplitterId != UnusedSplitterId)
|
|
|
|
{
|
|
|
|
ref SplitterState splitter = ref splitterContext.GetState((int)parameter.DestinationSplitterId);
|
|
|
|
|
|
|
|
for (int i = 0; i < splitter.DestinationCount; i++)
|
|
|
|
{
|
|
|
|
Span<SplitterDestination> destination = splitter.GetData(i);
|
|
|
|
|
|
|
|
if (!destination.IsEmpty)
|
|
|
|
{
|
|
|
|
int destinationMixId = destination[0].DestinationId;
|
|
|
|
|
|
|
|
if (destinationMixId != UnusedMixId)
|
|
|
|
{
|
|
|
|
edgeMatrix.Connect(MixId, destinationMixId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
edgeMatrix.Connect(MixId, parameter.DestinationMixId);
|
|
|
|
}
|
|
|
|
|
|
|
|
DestinationMixId = parameter.DestinationMixId;
|
|
|
|
DestinationSplitterId = parameter.DestinationSplitterId;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Update the mix from user information.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="edgeMatrix">The adjacency matrix.</param>
|
|
|
|
/// <param name="parameter">The input parameter of the mix.</param>
|
|
|
|
/// <param name="effectContext">The effect context.</param>
|
|
|
|
/// <param name="splitterContext">The splitter context.</param>
|
|
|
|
/// <param name="behaviourContext">The behaviour context.</param>
|
|
|
|
/// <returns>Return true if the mix was changed.</returns>
|
Audio rendering: reduce memory allocations (#6604)
* - WritableRegion: enable wrapping IMemoryOwner<byte>
- IVirtualMemoryManager impls of GetWritableRegion() use pooled memory when region is non-contiguous.
- IVirtualMemoryManager: add GetReadOnlySequence() and impls
- ByteMemoryPool: add new method RentCopy()
- ByteMemoryPool: make class static, remove ctor and singleton field from earlier impl
* - BytesReadOnlySequenceSegment: move from Ryujinx.Common.Memory to Ryujinx.Memory
- BytesReadOnlySequenceSegment: add IsContiguousWith() and Replace() methods
- VirtualMemoryManagerBase:
- remove generic type parameters, instead use ulong for virtual addresses and nuint for host/physical addresses
- implement IWritableBlock
- add virtual GetReadOnlySequence() with coalescing of contiguous segments
- add virtual GetSpan()
- add virtual GetWritableRegion()
- add abstract IsMapped()
- add virtual MapForeign(ulong, nuint, ulong)
- add virtual Read<T>()
- add virtual Read(ulong, Span<byte>)
- add virtual ReadTracked<T>()
- add virtual SignalMemoryTracking()
- add virtual Write()
- add virtual Write<T>()
- add virtual WriteUntracked()
- add virtual WriteWithRedundancyCheck()
- VirtualMemoryManagerRefCountedBase: remove generic type parameters
- AddressSpaceManager: remove redundant methods, add required overrides
- HvMemoryManager: remove redundant methods, add required overrides, add overrides for _invalidAccessHandler handling
- MemoryManager: remove redundant methods, add required overrides, add overrides for _invalidAccessHandler handling
- MemoryManagerHostMapped: remove redundant methods, add required overrides, add overrides for _invalidAccessHandler handling
- NativeMemoryManager: add get properties for Pointer and Length
- throughout: removed invalid <inheritdoc/> comments
* - WritableRegion: enable wrapping IMemoryOwner<byte>
- IVirtualMemoryManager impls of GetWritableRegion() use pooled memory when region is non-contiguous.
- IVirtualMemoryManager: add GetReadOnlySequence() and impls
- ByteMemoryPool: add new method RentCopy()
- ByteMemoryPool: make class static, remove ctor and singleton field from earlier impl
* add PagedMemoryRange enumerator types, use them in IVirtualMemoryManager implementations to consolidate page-handling logic and add a new capability - the coalescing of pages for consolidating memory copies and segmentation.
* new: more tests for PagedMemoryRangeCoalescingEnumerator showing coalescing of contiguous segments
* make some struct properties readonly
* put braces around `foreach` bodies
* encourage inlining of some PagedMemoryRange*Enumerator members
* DynamicRingBuffer:
- use ByteMemoryPool
- make some methods return without locking when size/count argument = 0
- make generic Read<T>()/Write<T>() non-generic because its only usage is as T = byte
- change Read(byte[]...) to Read(Span<byte>...)
- change Write(byte[]...) to Write(Span<byte>...)
* change IAudioRenderer.RequestUpdate() to take a ReadOnlySequence<byte>, enabling zero-copy audio rendering
* HipcGenerator: support ReadOnlySequence<byte> as IPC method parameter
* change IAudioRenderer/AudioRenderer RequestUpdate* methods to take input as ReadOnlySequence<byte>
* MemoryManagerHostTracked: use rented memory when contiguous in `GetWritableRegion()`
* rebase cleanup
* dotnet format fixes
* format and comment fixes
* format long parameter list - take 2
* - add support to HipcGenerator for buffers of type `Memory<byte>`
- change `AudioRenderer` `RequestUpdate()` and `RequestUpdateAuto()` to use Memory<byte> for output buffers, removing another memory block allocation/copy
* SplitterContext `UpdateState()` and `UpdateData()` smooth out advance/rewind logic, only rewind if magic is invalid
* DynamicRingBuffer.Write(): change Span<byte> to ReadOnlySpan<byte>
2024-04-07 21:07:32 +00:00
|
|
|
public bool Update(EdgeMatrix edgeMatrix, in MixParameter parameter, EffectContext effectContext, SplitterContext splitterContext, BehaviourContext behaviourContext)
|
2020-08-18 01:49:37 +00:00
|
|
|
{
|
|
|
|
bool isDirty;
|
|
|
|
|
|
|
|
Volume = parameter.Volume;
|
|
|
|
SampleRate = parameter.SampleRate;
|
|
|
|
BufferCount = parameter.BufferCount;
|
|
|
|
IsUsed = parameter.IsUsed;
|
|
|
|
MixId = parameter.MixId;
|
|
|
|
NodeId = parameter.NodeId;
|
|
|
|
parameter.MixBufferVolume.CopyTo(MixBufferVolume);
|
|
|
|
|
|
|
|
if (behaviourContext.IsSplitterSupported())
|
|
|
|
{
|
Audio rendering: reduce memory allocations (#6604)
* - WritableRegion: enable wrapping IMemoryOwner<byte>
- IVirtualMemoryManager impls of GetWritableRegion() use pooled memory when region is non-contiguous.
- IVirtualMemoryManager: add GetReadOnlySequence() and impls
- ByteMemoryPool: add new method RentCopy()
- ByteMemoryPool: make class static, remove ctor and singleton field from earlier impl
* - BytesReadOnlySequenceSegment: move from Ryujinx.Common.Memory to Ryujinx.Memory
- BytesReadOnlySequenceSegment: add IsContiguousWith() and Replace() methods
- VirtualMemoryManagerBase:
- remove generic type parameters, instead use ulong for virtual addresses and nuint for host/physical addresses
- implement IWritableBlock
- add virtual GetReadOnlySequence() with coalescing of contiguous segments
- add virtual GetSpan()
- add virtual GetWritableRegion()
- add abstract IsMapped()
- add virtual MapForeign(ulong, nuint, ulong)
- add virtual Read<T>()
- add virtual Read(ulong, Span<byte>)
- add virtual ReadTracked<T>()
- add virtual SignalMemoryTracking()
- add virtual Write()
- add virtual Write<T>()
- add virtual WriteUntracked()
- add virtual WriteWithRedundancyCheck()
- VirtualMemoryManagerRefCountedBase: remove generic type parameters
- AddressSpaceManager: remove redundant methods, add required overrides
- HvMemoryManager: remove redundant methods, add required overrides, add overrides for _invalidAccessHandler handling
- MemoryManager: remove redundant methods, add required overrides, add overrides for _invalidAccessHandler handling
- MemoryManagerHostMapped: remove redundant methods, add required overrides, add overrides for _invalidAccessHandler handling
- NativeMemoryManager: add get properties for Pointer and Length
- throughout: removed invalid <inheritdoc/> comments
* - WritableRegion: enable wrapping IMemoryOwner<byte>
- IVirtualMemoryManager impls of GetWritableRegion() use pooled memory when region is non-contiguous.
- IVirtualMemoryManager: add GetReadOnlySequence() and impls
- ByteMemoryPool: add new method RentCopy()
- ByteMemoryPool: make class static, remove ctor and singleton field from earlier impl
* add PagedMemoryRange enumerator types, use them in IVirtualMemoryManager implementations to consolidate page-handling logic and add a new capability - the coalescing of pages for consolidating memory copies and segmentation.
* new: more tests for PagedMemoryRangeCoalescingEnumerator showing coalescing of contiguous segments
* make some struct properties readonly
* put braces around `foreach` bodies
* encourage inlining of some PagedMemoryRange*Enumerator members
* DynamicRingBuffer:
- use ByteMemoryPool
- make some methods return without locking when size/count argument = 0
- make generic Read<T>()/Write<T>() non-generic because its only usage is as T = byte
- change Read(byte[]...) to Read(Span<byte>...)
- change Write(byte[]...) to Write(Span<byte>...)
* change IAudioRenderer.RequestUpdate() to take a ReadOnlySequence<byte>, enabling zero-copy audio rendering
* HipcGenerator: support ReadOnlySequence<byte> as IPC method parameter
* change IAudioRenderer/AudioRenderer RequestUpdate* methods to take input as ReadOnlySequence<byte>
* MemoryManagerHostTracked: use rented memory when contiguous in `GetWritableRegion()`
* rebase cleanup
* dotnet format fixes
* format and comment fixes
* format long parameter list - take 2
* - add support to HipcGenerator for buffers of type `Memory<byte>`
- change `AudioRenderer` `RequestUpdate()` and `RequestUpdateAuto()` to use Memory<byte> for output buffers, removing another memory block allocation/copy
* SplitterContext `UpdateState()` and `UpdateData()` smooth out advance/rewind logic, only rewind if magic is invalid
* DynamicRingBuffer.Write(): change Span<byte> to ReadOnlySpan<byte>
2024-04-07 21:07:32 +00:00
|
|
|
isDirty = UpdateConnection(edgeMatrix, in parameter, ref splitterContext);
|
2020-08-18 01:49:37 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
isDirty = DestinationMixId != parameter.DestinationMixId;
|
|
|
|
|
|
|
|
if (DestinationMixId != parameter.DestinationMixId)
|
|
|
|
{
|
|
|
|
DestinationMixId = parameter.DestinationMixId;
|
|
|
|
}
|
|
|
|
|
|
|
|
DestinationSplitterId = UnusedSplitterId;
|
|
|
|
}
|
|
|
|
|
|
|
|
ClearEffectProcessingOrder();
|
|
|
|
|
|
|
|
for (int i = 0; i < effectContext.GetCount(); i++)
|
|
|
|
{
|
|
|
|
ref BaseEffect effect = ref effectContext.GetEffect(i);
|
|
|
|
|
|
|
|
if (effect.MixId == MixId)
|
|
|
|
{
|
|
|
|
Debug.Assert(effect.ProcessingOrder <= EffectProcessingOrderArrayMaxCount);
|
|
|
|
|
|
|
|
if (effect.ProcessingOrder > EffectProcessingOrderArrayMaxCount)
|
|
|
|
{
|
|
|
|
return isDirty;
|
|
|
|
}
|
|
|
|
|
|
|
|
EffectProcessingOrderArray[(int)effect.ProcessingOrder] = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return isDirty;
|
|
|
|
}
|
|
|
|
}
|
2023-07-01 23:27:18 +00:00
|
|
|
}
|