mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-08 03:51:39 +12:00
Better audio playback code
This commit is contained in:
parent
1baf8a13ed
commit
83aafa31f0
3 changed files with 32 additions and 12 deletions
|
@ -24,7 +24,8 @@ namespace Audio {
|
|||
static constexpr u64 lleSlice = 16384;
|
||||
|
||||
class DSPCore {
|
||||
using Samples = Common::RingBuffer<s16, 1024>;
|
||||
// 0x2000 stereo (= 2 channel) samples
|
||||
using Samples = Common::RingBuffer<s16, 0x2000 * 2>;
|
||||
|
||||
protected:
|
||||
Memory& mem;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue