summaryrefslogtreecommitdiff
path: root/apps/pcmbuf.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/pcmbuf.c')
-rw-r--r--apps/pcmbuf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/pcmbuf.c b/apps/pcmbuf.c
index 8f16c90523..b9587d08dd 100644
--- a/apps/pcmbuf.c
+++ b/apps/pcmbuf.c
@@ -82,7 +82,7 @@ static char *fadebuf IDATA_ATTR;
82static char *voicebuf IDATA_ATTR; 82static char *voicebuf IDATA_ATTR;
83 83
84static void (*pcmbuf_event_handler)(void) IDATA_ATTR; 84static void (*pcmbuf_event_handler)(void) IDATA_ATTR;
85static void (*position_callback)(size_t size) IDATA_ATTR; 85static void (*position_callback)(const size_t size) IDATA_ATTR;
86 86
87/* Crossfade related state */ 87/* Crossfade related state */
88static bool crossfade_enabled; 88static bool crossfade_enabled;
@@ -188,7 +188,7 @@ static void pcmbuf_callback(unsigned char** start, size_t* size)
188 } 188 }
189} 189}
190 190
191void pcmbuf_set_position_callback(void (*callback)(size_t size)) 191void pcmbuf_set_position_callback(void (*callback)(const size_t size))
192{ 192{
193 position_callback = callback; 193 position_callback = callback;
194} 194}
@@ -938,7 +938,7 @@ void pcmbuf_write_complete(int count)
938} 938}
939 939
940#if 0 940#if 0
941bool pcmbuf_insert_buffer(char *buf, int count) 941bool pcmbuf_insert_buffer(char *buf, const int count)
942{ 942{
943 size_t length = (size_t)(unsigned int)count << 2; 943 size_t length = (size_t)(unsigned int)count << 2;
944 944