summaryrefslogtreecommitdiff
path: root/firmware/export/mpeg.h
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-09-15 05:29:26 +0000
committerJens Arnold <amiconn@rockbox.org>2005-09-15 05:29:26 +0000
commitba966c17614fc2de2b443a82071415b194753aa4 (patch)
tree85b1af551200ab551b4e52a57008ca92ca454e29 /firmware/export/mpeg.h
parent0c1a2c7651c0727f2a5565e1302f50f64202a9f6 (diff)
Archos recording/playback: (1) Xing header creation: * Now estimates the framecount from the recording time if the MAS frame counter saturates, so it always writes a valid Xing header. * Reverted my brainless short-xing-header change. This was only valid for layer 3. (2) Xing/VBRI header evaluation: Fixed possible overflow in bitrate calculation. (3) MPEG thread: Avoid double chunk size limiting for the rare case of 8 MB modded Ondios.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7522 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/mpeg.h')
-rw-r--r--firmware/export/mpeg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/mpeg.h b/firmware/export/mpeg.h
index a0ad3c405c..a7c9cac321 100644
--- a/firmware/export/mpeg.h
+++ b/firmware/export/mpeg.h
@@ -41,7 +41,7 @@
#define MPEG_MAX_PRERECORD_SECONDS 30
/* For ID3 info and VBR header */
-#define MPEG_RESERVED_HEADER_SPACE (4096 + 288)
+#define MPEG_RESERVED_HEADER_SPACE (4096 + 576)
#if (CONFIG_CODEC == MAS3587F) || defined(SIMULATOR)
void mpeg_init_recording(void);