summaryrefslogtreecommitdiff
path: root/apps/plugins/vbrfix.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/vbrfix.c')
-rw-r--r--apps/plugins/vbrfix.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/vbrfix.c b/apps/plugins/vbrfix.c
index 665a2aae5e..85a61cbfc3 100644
--- a/apps/plugins/vbrfix.c
+++ b/apps/plugins/vbrfix.c
@@ -20,7 +20,7 @@
20 20
21PLUGIN_HEADER 21PLUGIN_HEADER
22 22
23static struct plugin_api* rb; 23static const struct plugin_api* rb;
24 24
25static char *audiobuf; 25static char *audiobuf;
26static ssize_t audiobuflen; 26static ssize_t audiobuflen;
@@ -36,7 +36,7 @@ static void xingupdate(int percent)
36 rb->lcd_update(); 36 rb->lcd_update();
37} 37}
38 38
39static int insert_data_in_file(char *fname, int fpos, char *buf, int num_bytes) 39static int insert_data_in_file(const char *fname, int fpos, char *buf, int num_bytes)
40{ 40{
41 int readlen; 41 int readlen;
42 int rc; 42 int rc;
@@ -126,7 +126,7 @@ static const unsigned char empty_id3_header[] =
126 0x00, 0x00, 0x1f, 0x76 /* Size is 4096 minus 10 bytes for the header */ 126 0x00, 0x00, 0x1f, 0x76 /* Size is 4096 minus 10 bytes for the header */
127}; 127};
128 128
129static bool vbr_fix(char *selected_file) 129static bool vbr_fix(const char *selected_file)
130{ 130{
131 struct mp3entry entry; 131 struct mp3entry entry;
132 int fd; 132 int fd;
@@ -261,7 +261,7 @@ static bool vbr_fix(char *selected_file)
261 return false; 261 return false;
262} 262}
263 263
264enum plugin_status plugin_start(struct plugin_api* api, void *parameter) 264enum plugin_status plugin_start(const struct plugin_api* api, const void *parameter)
265{ 265{
266 rb = api; 266 rb = api;
267 267