summaryrefslogtreecommitdiff
path: root/firmware/pcm_playback.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/pcm_playback.c')
-rw-r--r--firmware/pcm_playback.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/pcm_playback.c b/firmware/pcm_playback.c
index 2c63f8ccd7..582f04cd72 100644
--- a/firmware/pcm_playback.c
+++ b/firmware/pcm_playback.c
@@ -44,7 +44,7 @@
44/* Must be a power of 2 */ 44/* Must be a power of 2 */
45#define NUM_PCM_BUFFERS (PCMBUF_SIZE / CHUNK_SIZE) 45#define NUM_PCM_BUFFERS (PCMBUF_SIZE / CHUNK_SIZE)
46#define NUM_PCM_BUFFERS_MASK (NUM_PCM_BUFFERS - 1) 46#define NUM_PCM_BUFFERS_MASK (NUM_PCM_BUFFERS - 1)
47#define PCM_WATERMARK (CHUNK_SIZE * 3) 47#define PCM_WATERMARK (CHUNK_SIZE * 6)
48 48
49static bool pcm_playing; 49static bool pcm_playing;
50static bool pcm_paused; 50static bool pcm_paused;