summaryrefslogtreecommitdiff
path: root/firmware/export/pcm-internal.h
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2021-07-25 14:03:44 +0100
committerAidan MacDonald <amachronic@protonmail.com>2021-07-25 14:07:41 +0000
commite532714d1f76ccdbd1dcfeb3b4579d324cb519c1 (patch)
tree588252314fd7910c49b60cece106d2c23e6fcef6 /firmware/export/pcm-internal.h
parent77ec7522485c0bf1f48669d6eca0d09366c3bbd7 (diff)
downloadrockbox-e532714d1f76ccdbd1dcfeb3b4579d324cb519c1.tar.gz
rockbox-e532714d1f76ccdbd1dcfeb3b4579d324cb519c1.zip
pcm: Remove unused function pcm_play_dma_get_peak_buffer()
Change-Id: Ifd20fb14a22489cdb99154c01f69809a1e70d0c5
Diffstat (limited to 'firmware/export/pcm-internal.h')
-rw-r--r--firmware/export/pcm-internal.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/firmware/export/pcm-internal.h b/firmware/export/pcm-internal.h
index d5d46c33e1..e6400004a0 100644
--- a/firmware/export/pcm-internal.h
+++ b/firmware/export/pcm-internal.h
@@ -121,7 +121,6 @@ pcm_play_dma_status_callback(enum pcm_dma_status status)
121void pcm_play_dma_start_int(const void *addr, size_t size); 121void pcm_play_dma_start_int(const void *addr, size_t size);
122void pcm_play_dma_stop_int(void); 122void pcm_play_dma_stop_int(void);
123void pcm_play_stop_int(void); 123void pcm_play_stop_int(void);
124const void *pcm_play_dma_get_peak_buffer_int(int *count);
125#endif /* HAVE_SW_VOLUME_CONTROL && !PCM_SW_VOLUME_UNBUFFERED */ 124#endif /* HAVE_SW_VOLUME_CONTROL && !PCM_SW_VOLUME_UNBUFFERED */
126 125
127/* Called by the bottom layer ISR when more data is needed. Returns true 126/* Called by the bottom layer ISR when more data is needed. Returns true
@@ -145,7 +144,6 @@ void pcm_play_dma_init(void) INIT_ATTR;
145void pcm_play_dma_postinit(void); 144void pcm_play_dma_postinit(void);
146void pcm_play_dma_start(const void *addr, size_t size); 145void pcm_play_dma_start(const void *addr, size_t size);
147void pcm_play_dma_stop(void); 146void pcm_play_dma_stop(void);
148const void * pcm_play_dma_get_peak_buffer(int *count);
149 147
150void pcm_dma_apply_settings(void); 148void pcm_dma_apply_settings(void);
151 149