diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-06-04 11:49:15 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-06-04 11:49:15 +0000 |
| commit | 313f67651fd964367538d3ee0213d6796e90d0e9 (patch) | |
| tree | 6d17062fdb1191635bf279f0151fbe93d095a449 | |
| parent | 4f0659c120ffa219a6580089c6cee0d66561c0e3 (diff) | |
| download | rockbox-313f67651fd964367538d3ee0213d6796e90d0e9.zip rockbox-313f67651fd964367538d3ee0213d6796e90d0e9.tar.gz rockbox-313f67651fd964367538d3ee0213d6796e90d0e9.tar.bz2 rockbox-313f67651fd964367538d3ee0213d6796e90d0e9.tar.xz | |
We now put ID3v2.3 tags in the recorded files instead of ID3v2.4, because some auido editing tools can't handle ID3v2.4
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4720 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/mpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c index 8d0eb88..cafe54d 100644 --- a/firmware/mpeg.c +++ b/firmware/mpeg.c @@ -952,7 +952,7 @@ static bool swap_one_chunk(void) static const unsigned char empty_id3_header[] = { - 'I', 'D', '3', 0x04, 0x00, 0x00, + 'I', 'D', '3', 0x03, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x76 /* Size is 4096 minus 10 bytes for the header */ }; |