diff options
author | Jens Arnold <amiconn@rockbox.org> | 2004-11-07 08:11:01 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2004-11-07 08:11:01 +0000 |
commit | 8ed50037e4c5b0e622045eb58c8ab54aad4477fc (patch) | |
tree | 76c4d5172665c85fd9581f7245e310dafeef4273 | |
parent | 6fde243d52ed9b327b41cb75364e899555ccdf51 (diff) |
Ondio: Increased PLAY_PENDING thresholds for smooth playback of all bitrates right from the start
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5388 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | firmware/export/mpeg.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/export/mpeg.h b/firmware/export/mpeg.h index 66e6ad950c..f24664edc9 100644 --- a/firmware/export/mpeg.h +++ b/firmware/export/mpeg.h @@ -29,8 +29,13 @@ #define MPEG_RECORDING_LOW_WATER 0x80000 #define MPEG_LOW_WATER_CHUNKSIZE 0x40000 #define MPEG_LOW_WATER_SWAP_CHUNKSIZE 0x10000 +#ifdef HAVE_MMC +#define MPEG_PLAY_PENDING_THRESHOLD 0x20000 +#define MPEG_PLAY_PENDING_SWAPSIZE 0x20000 +#else #define MPEG_PLAY_PENDING_THRESHOLD 0x10000 #define MPEG_PLAY_PENDING_SWAPSIZE 0x10000 +#endif #define MPEG_MAX_PRERECORD_SECONDS 30 |