summaryrefslogtreecommitdiff
path: root/firmware/mpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/mpeg.c')
-rw-r--r--firmware/mpeg.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c
index c6afbd8e6c..bfcdfc1c0c 100644
--- a/firmware/mpeg.c
+++ b/firmware/mpeg.c
@@ -803,7 +803,7 @@ static void transfer_end(unsigned char** ppbuf, int* psize)
803 wake_up_thread(); 803 wake_up_thread();
804} 804}
805 805
806static int add_track_to_tag_list(char *filename) 806static int add_track_to_tag_list(const char *filename)
807{ 807{
808 struct id3tag *t = NULL; 808 struct id3tag *t = NULL;
809 int i; 809 int i;
@@ -938,7 +938,7 @@ static void track_change(void)
938} 938}
939 939
940#ifdef DEBUG 940#ifdef DEBUG
941void hexdump(unsigned char *buf, int len) 941void hexdump(const unsigned char *buf, int len)
942{ 942{
943 int i; 943 int i;
944 944
@@ -2167,7 +2167,7 @@ static void init_recording(void)
2167 call mpeg_set_recording_options(). */ 2167 call mpeg_set_recording_options(). */
2168} 2168}
2169 2169
2170void mpeg_record(char *filename) 2170void mpeg_record(const char *filename)
2171{ 2171{
2172 mpeg_errno = 0; 2172 mpeg_errno = 0;
2173 2173
@@ -2396,7 +2396,7 @@ void mpeg_set_recording_gain(int left, int right, bool use_mic)
2396 0x0007); 2396 0x0007);
2397} 2397}
2398 2398
2399void mpeg_new_file(char *filename) 2399void mpeg_new_file(const char *filename)
2400{ 2400{
2401 mpeg_errno = 0; 2401 mpeg_errno = 0;
2402 2402