1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Linus Nielsen Feltzing 2004-06-04 11:49:15 +00:00
parent 4f0659c120
commit 313f67651f

View file

@ -952,7 +952,7 @@ static bool swap_one_chunk(void)
static const unsigned char empty_id3_header[] = 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 */ 0x00, 0x00, 0x1f, 0x76 /* Size is 4096 minus 10 bytes for the header */
}; };