mirror of
https://github.com/unclshura/ABStemPlayer.git
synced 2026-08-07 00:43:38 +00:00
25 lines
734 B
C#
25 lines
734 B
C#
using AudioCore.Impl;
|
|
|
|
namespace AudioCore.Models;
|
|
|
|
public readonly struct TimeStretchedAudioBlock : IDisposable
|
|
{
|
|
public AudioBuffer<float> Buffer { get; }
|
|
public int Frames { get; }
|
|
public int Channels { get; }
|
|
public int SampleRate { get; }
|
|
public long Position { get; }
|
|
|
|
public TimeStretchedAudioBlock(AudioBuffer<float> buffer, int frames, int channels, int sampleRate, long position)
|
|
{
|
|
Buffer = buffer;
|
|
Frames = frames;
|
|
Channels = channels;
|
|
SampleRate = sampleRate;
|
|
Position = position;
|
|
}
|
|
|
|
public void Dispose() => Buffer?.Dispose();
|
|
public override string ToString() => $"{Frames} x {Channels} = {Buffer.Length} @ {Position}";
|
|
}
|