Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
never
  • Loading branch information
rolfbjarne committed Oct 14, 2025
commit b3d995663fcfb0c0cda14c3714980ce7e7fb9fd6
3 changes: 3 additions & 0 deletions src/AudioToolbox/AudioQueue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
Expand Down Expand Up @@ -776,6 +777,7 @@ public AudioQueueStatus Reset ()
/// <para>Use <see cref="FreeBuffer(System.IntPtr)" /> to dispose the buffer.</para>
/// </remarks>
[Obsolete ("Call 'AllocateBuffer(int, out AudioQueueBuffer*)' instead.")]
[EditorBrowsable (EditorBrowsableState.Never)]
public AudioQueueStatus AllocateBuffer (int bufferSize, out IntPtr audioQueueBuffer)
{
audioQueueBuffer = default (IntPtr);
Expand Down Expand Up @@ -818,6 +820,7 @@ public unsafe AudioQueueStatus AllocateBuffer (int bufferSize, out AudioQueueBuf
/// <para>Use <see cref="FreeBuffer(System.IntPtr)" /> to free the buffer (if not it will be freed when this audio queue is disposed).</para>
/// </remarks>
[Obsolete ("Call 'AllocateBuffer(int, int, out AudioQueueBuffer*)' instead.")]
[EditorBrowsable (EditorBrowsableState.Never)]
public AudioQueueStatus AllocateBufferWithPacketDescriptors (int bufferSize, int nPackets, out IntPtr audioQueueBuffer)
{
audioQueueBuffer = default (IntPtr);
Expand Down
Loading