summaryrefslogtreecommitdiff
path: root/firmware/mpeg.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-05-08 13:41:24 +0000
committerJens Arnold <amiconn@rockbox.org>2005-05-08 13:41:24 +0000
commita559cf2e3949fcc0482b656411ed68c1e79bb245 (patch)
treee2b4f632f6da505ca7e4eefa1a0b7105d773367e /firmware/mpeg.c
parent642ac35940a950fe6ee6c4de92e3a75533a4f978 (diff)
downloadrockbox-a559cf2e3949fcc0482b656411ed68c1e79bb245.tar.gz
rockbox-a559cf2e3949fcc0482b656411ed68c1e79bb245.zip
Disabled unused constants.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6431 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/mpeg.c')
-rw-r--r--firmware/mpeg.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c
index 115d590f65..5496ace9ac 100644
--- a/firmware/mpeg.c
+++ b/firmware/mpeg.c
@@ -1019,11 +1019,13 @@ static bool swap_one_chunk(void)
1019} 1019}
1020#endif 1020#endif
1021 1021
1022#ifdef HAVE_RECORDING
1022const unsigned char empty_id3_header[] = 1023const unsigned char empty_id3_header[] =
1023{ 1024{
1024 'I', 'D', '3', 0x03, 0x00, 0x00, 1025 'I', 'D', '3', 0x03, 0x00, 0x00,
1025 0x00, 0x00, 0x1f, 0x76 /* Size is 4096 minus 10 bytes for the header */ 1026 0x00, 0x00, 0x1f, 0x76 /* Size is 4096 minus 10 bytes for the header */
1026}; 1027};
1028#endif
1027 1029
1028static void mpeg_thread(void) 1030static void mpeg_thread(void)
1029{ 1031{