blob: 39a58c91ac2397dc1be638f27c266b062d0f8931 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
using System;
namespace Ryujinx.Audio.Renderer.Server.Upsampler
{
/// <summary>
/// Server state for a upsampling.
/// </summary>
public class UpsamplerState
{
/// <summary>
/// The output buffer containing the target samples.
/// </summary>
public Memory<float> OutputBuffer { get; }
/// <summary>
/// The target sample count.
/// </summary>
public uint SampleCount { get; }
/// <summary>
/// The index of the <see cref="UpsamplerState"/>. (used to free it)
/// </summary>
private readonly int _index;
/// <summary>
/// The <see cref="UpsamplerManager"/>.
/// </summary>
private readonly UpsamplerManager _manager;
/// <summary>
/// The source sample count.
/// </summary>
public uint SourceSampleCount;
/// <summary>
/// The input buffer indices of the buffers holding the samples that need upsampling.
/// </summary>
public ushort[] InputBufferIndices;
/// <summary>
/// State of each input buffer index kept across invocations of the upsampler.
/// </summary>
public UpsamplerBufferState[] BufferStates;
/// <summary>
/// Create a new <see cref="UpsamplerState"/>.
/// </summary>
/// <param name="manager">The upsampler manager.</param>
/// <param name="index">The index of the <see cref="UpsamplerState"/>. (used to free it)</param>
/// <param name="outputBuffer">The output buffer used to contain the target samples.</param>
/// <param name="sampleCount">The target sample count.</param>
public UpsamplerState(UpsamplerManager manager, int index, Memory<float> outputBuffer, uint sampleCount)
{
_manager = manager;
_index = index;
OutputBuffer = outputBuffer;
SampleCount = sampleCount;
}
/// <summary>
/// Release the <see cref="UpsamplerState"/>.
/// </summary>
public void Release()
{
_manager.Free(_index);
}
}
}
|