diff options
author | Dave Chapman <dave@dchapman.com> | 2005-06-13 22:46:09 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2005-06-13 22:46:09 +0000 |
commit | 24394b3316aa52cb91d52b304552ee0a54b565c5 (patch) | |
tree | 98db9826db6bcf3855610c87b40180b7bfbb0fef /apps/plugins | |
parent | 58af47c8f23531fe1947fc1a01c46060e4071cb2 (diff) |
Increase FILEBUF_CHUNKSIZE to 128K - fixes pauses in high-bitrate AC3s
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6703 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r-- | apps/plugins/codeca52.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/codeca52.c b/apps/plugins/codeca52.c index 08439d31be..ced5ced4a4 100644 --- a/apps/plugins/codeca52.c +++ b/apps/plugins/codeca52.c @@ -171,7 +171,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parm) #endif ci->configure(CODEC_SET_FILEBUF_LIMIT, (int *)(1024*1024*2)); - ci->configure(CODEC_SET_FILEBUF_CHUNKSIZE, (int *)(1024*16)); + ci->configure(CODEC_SET_FILEBUF_CHUNKSIZE, (int *)(1024*128)); next_track: |