summaryrefslogtreecommitdiff
path: root/firmware/export/mp3data.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/mp3data.h')
-rw-r--r--firmware/export/mp3data.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/mp3data.h b/firmware/export/mp3data.h
index a1018ebaa2..54a6899a78 100644
--- a/firmware/export/mp3data.h
+++ b/firmware/export/mp3data.h
@@ -46,7 +46,7 @@ struct mp3info {
46 int frame_count; /* Number of frames in the file (if VBR) */ 46 int frame_count; /* Number of frames in the file (if VBR) */
47 int byte_count; /* File size in bytes */ 47 int byte_count; /* File size in bytes */
48 int file_time; /* Length of the whole file in milliseconds */ 48 int file_time; /* Length of the whole file in milliseconds */
49 int xing_header_pos; 49 int vbr_header_pos;
50}; 50};
51 51
52/* Xing header information */ 52/* Xing header information */
@@ -61,6 +61,6 @@ int count_mp3_frames(int fd, int startpos, int filesize,
61 void (*progressfunc)(int)); 61 void (*progressfunc)(int));
62int create_xing_header(int fd, int startpos, int filesize, 62int create_xing_header(int fd, int startpos, int filesize,
63 unsigned char *buf, int num_frames, 63 unsigned char *buf, int num_frames,
64 void (*progressfunc)(int)); 64 void (*progressfunc)(int), bool generate_toc);
65 65
66#endif 66#endif