summaryrefslogtreecommitdiff
path: root/firmware/mp3data.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/mp3data.c')
-rw-r--r--firmware/mp3data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/mp3data.c b/firmware/mp3data.c
index a55d052e1b..07227e7133 100644
--- a/firmware/mp3data.c
+++ b/firmware/mp3data.c
@@ -35,7 +35,7 @@
35#include "mp3data.h" 35#include "mp3data.h"
36#include "file.h" 36#include "file.h"
37 37
38#define DEBUG_VERBOSE 38#undef DEBUG_VERBOSE
39 39
40#define BYTES2INT(b1,b2,b3,b4) (((b1 & 0xFF) << (3*8)) | \ 40#define BYTES2INT(b1,b2,b3,b4) (((b1 & 0xFF) << (3*8)) | \
41 ((b2 & 0xFF) << (2*8)) | \ 41 ((b2 & 0xFF) << (2*8)) | \
@@ -658,7 +658,7 @@ int create_xing_header(int fd, int startpos, int filesize,
658 /* Advance from the last seek point to this one */ 658 /* Advance from the last seek point to this one */
659 for(j = 0;j < pos - last_pos;j++) 659 for(j = 0;j < pos - last_pos;j++)
660 { 660 {
661 DEBUGF("fpos: %x frame no: %x ", filepos, x++); 661 DEBUGF("fpos: %x frame no: %x\n", filepos, x++);
662 header = buf_find_next_frame(fd, &bytes, -1, header); 662 header = buf_find_next_frame(fd, &bytes, -1, header);
663 mp3headerinfo(&info, header); 663 mp3headerinfo(&info, header);
664 buf_seek(fd, info.frame_size-4); 664 buf_seek(fd, info.frame_size-4);