Skip to content
Snippets Groups Projects
Commit f56b186d authored by pippin's avatar pippin
Browse files

st3m_pcm: increase internal reserved samples, needed for 22khz queuing

parent 862c7203
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#define ST3M_PCM_BUF_SIZE (16384) #define ST3M_PCM_BUF_SIZE (16384)
static int st3m_pcm_gain = 4096; static int st3m_pcm_gain = 4096;
int st3m_pcm_queue_length(void) { return ST3M_PCM_BUF_SIZE - 2400; } int st3m_pcm_queue_length(void) { return ST3M_PCM_BUF_SIZE - 4000; }
EXT_RAM_BSS_ATTR static int16_t st3m_pcm_buffer[ST3M_PCM_BUF_SIZE]; EXT_RAM_BSS_ATTR static int16_t st3m_pcm_buffer[ST3M_PCM_BUF_SIZE];
static int st3m_pcm_w = 1; static int st3m_pcm_w = 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment