forked from len0rd/rockbox
Musepack seek hotfix. Do not dynamically allocate seek buffer but use a buffer of constant size (~28.5min). Files larger than this will still not seek properly. Some additional rework has to be done for the seek buffer.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17584 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
69fc5ad48a
commit
1d28fe7d79
4 changed files with 6 additions and 15 deletions
|
@ -48,7 +48,8 @@
|
|||
|
||||
enum {
|
||||
MPC_V_MEM = 2304,
|
||||
MPC_DECODER_MEMSIZE = 16384, // overall buffer size
|
||||
MPC_DECODER_MEMSIZE = 16384, // overall buffer size (words)
|
||||
MPC_SEEK_BUFFER_SIZE = 65536, // seek buffer size (words)
|
||||
};
|
||||
|
||||
typedef struct {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue