summaryrefslogtreecommitdiff
path: root/firmware/export/pcm_mixer.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/pcm_mixer.h')
-rw-r--r--firmware/export/pcm_mixer.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/export/pcm_mixer.h b/firmware/export/pcm_mixer.h
index 9c4e06e0be..be10601ffd 100644
--- a/firmware/export/pcm_mixer.h
+++ b/firmware/export/pcm_mixer.h
@@ -103,6 +103,10 @@ size_t mixer_channel_get_bytes_waiting(enum pcm_mixer_channel channel);
103/* Return pointer to channel's playing audio data and the size remaining */ 103/* Return pointer to channel's playing audio data and the size remaining */
104void * mixer_channel_get_buffer(enum pcm_mixer_channel channel, int *count); 104void * mixer_channel_get_buffer(enum pcm_mixer_channel channel, int *count);
105 105
106/* Calculate peak values for channel */
107void mixer_channel_calculate_peaks(enum pcm_mixer_channel channel,
108 int *left, int *right);
109
106/* Stop ALL channels and PCM and reset state */ 110/* Stop ALL channels and PCM and reset state */
107void mixer_reset(void); 111void mixer_reset(void);
108 112