mirror of
https://github.com/AlexandreRouma/dsp2.git
synced 2026-04-18 06:52:42 +00:00
13 lines
750 B
Plaintext
13 lines
750 B
Plaintext
Replaces the BufferSet struct using the Buffer class
|
|
|
|
Move the fixes from the SFAP library's stream.c to this one?
|
|
|
|
Think a lot about how multichannel streams are to be handled. Doing it all in one thread might not be possible so perhapse a built-in synchronisation system is worth it?
|
|
|
|
Think about how blocks handle multi-channel streams. Maybe sometimes you want different behavior for each channel, so duplicating the DSP as is could be stupid
|
|
|
|
Using multiple threads for audio may be slower than interleaved channels. It could also add latency since it has to be re-interleaved at the end of the DSP.
|
|
|
|
Need a way to represent End-of-File for batch processing. That way sources could emit the flag, and sinks or processing threads could await it
|
|
|