summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2005-06-13 22:46:09 +0000
committerDave Chapman <dave@dchapman.com>2005-06-13 22:46:09 +0000
commit24394b3316aa52cb91d52b304552ee0a54b565c5 (patch)
tree98db9826db6bcf3855610c87b40180b7bfbb0fef /apps/plugins
parent58af47c8f23531fe1947fc1a01c46060e4071cb2 (diff)
downloadrockbox-24394b3316aa52cb91d52b304552ee0a54b565c5.tar.gz
rockbox-24394b3316aa52cb91d52b304552ee0a54b565c5.zip
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.c2
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)
171#endif 171#endif
172 172
173 ci->configure(CODEC_SET_FILEBUF_LIMIT, (int *)(1024*1024*2)); 173 ci->configure(CODEC_SET_FILEBUF_LIMIT, (int *)(1024*1024*2));
174 ci->configure(CODEC_SET_FILEBUF_CHUNKSIZE, (int *)(1024*16)); 174 ci->configure(CODEC_SET_FILEBUF_CHUNKSIZE, (int *)(1024*128));
175 175
176 next_track: 176 next_track:
177 177