mirror of
https://github.com/unclshura/ABStemPlayer.git
synced 2026-08-07 00:43:38 +00:00
9 lines
183 B
C#
9 lines
183 B
C#
namespace AudioCore.Interfaces;
|
|
|
|
public interface IAudioMixer
|
|
{
|
|
MixedAudioBlock Mix(
|
|
IReadOnlyList<TimeStretchedAudioBlock> stemBlocks,
|
|
MixerSettings settings);
|
|
}
|