summaryrefslogtreecommitdiff
path: root/firmware/mpeg.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-06-04 11:49:15 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-06-04 11:49:15 +0000
commit313f67651fd964367538d3ee0213d6796e90d0e9 (patch)
tree6d17062fdb1191635bf279f0151fbe93d095a449 /firmware/mpeg.c
parent4f0659c120ffa219a6580089c6cee0d66561c0e3 (diff)
downloadrockbox-313f67651fd964367538d3ee0213d6796e90d0e9.tar.gz
rockbox-313f67651fd964367538d3ee0213d6796e90d0e9.zip
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
Diffstat (limited to 'firmware/mpeg.c')
-rw-r--r--firmware/mpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c
index 8d0eb88dfd..cafe54d045 100644
--- a/firmware/mpeg.c
+++ b/firmware/mpeg.c
@@ -952,7 +952,7 @@ static bool swap_one_chunk(void)
952 952
953static const unsigned char empty_id3_header[] = 953static const unsigned char empty_id3_header[] =
954{ 954{
955 'I', 'D', '3', 0x04, 0x00, 0x00, 955 'I', 'D', '3', 0x03, 0x00, 0x00,
956 0x00, 0x00, 0x1f, 0x76 /* Size is 4096 minus 10 bytes for the header */ 956 0x00, 0x00, 0x1f, 0x76 /* Size is 4096 minus 10 bytes for the header */
957}; 957};
958 958