1
0
Fork 0
forked from len0rd/rockbox

The last frame of Musepack files can contain double the amount of samples as in ordinary frames, so let's double our buffer size to accomodate...

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9808 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thom Johansen 2006-04-25 20:39:31 +00:00
parent 75de60b9e8
commit 5398f720f0

View file

@ -63,8 +63,7 @@ mpc_bool_t canseek_impl(void *data)
return true;
}
/* temporary, we probably have better use for iram than this */
MPC_SAMPLE_FORMAT sample_buffer[MPC_FRAME_LENGTH*2] IBSS_ATTR;
MPC_SAMPLE_FORMAT sample_buffer[MPC_DECODER_BUFFER_LENGTH] IBSS_ATTR;
#ifdef USE_IRAM
extern char iramcopy[];