diff options
author | Brandon Low <lostlogic@rockbox.org> | 2007-11-05 17:48:21 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@rockbox.org> | 2007-11-05 17:48:21 +0000 |
commit | 3379440a4bfecef85c915fb079b595f98a6db1de (patch) | |
tree | b0d00f72449f78de08e1db8884a7ee1936423752 /apps/codecs/mpc.c | |
parent | 03dd35db0e22c971b09fc94fa24cce6f531ab7ce (diff) |
Remove conf_filechunk, it should never have been a setting and its implementation doesn't do what it claims any way
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15478 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/mpc.c')
-rw-r--r-- | apps/codecs/mpc.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/codecs/mpc.c b/apps/codecs/mpc.c index 4db8a186a2..207a09445f 100644 --- a/apps/codecs/mpc.c +++ b/apps/codecs/mpc.c @@ -78,7 +78,6 @@ enum codec_status codec_main(void) int retval = CODEC_OK; ci->configure(DSP_SET_SAMPLE_DEPTH, 28); - ci->configure(CODEC_SET_FILEBUF_CHUNKSIZE, 1024*16); /* Create a decoder instance */ reader.read = read_impl; @@ -133,14 +132,12 @@ next_track: /* Resume to saved sample offset. */ if(samplesdone > 0) { /* hack to improve seek time if filebuf goes empty */ - ci->configure(CODEC_SET_FILEBUF_CHUNKSIZE, 1024*512); if (mpc_decoder_seek_sample(&decoder, samplesdone)) { ci->set_elapsed(samplesdone/frequency); } else { samplesdone = 0; } /* reset chunksize */ - ci->configure(CODEC_SET_FILEBUF_CHUNKSIZE, 1024*16); } /* This is the decoding loop. */ @@ -149,7 +146,6 @@ next_track: /* Complete seek handler. */ if (ci->seek_time) { /* hack to improve seek time if filebuf goes empty */ - ci->configure(CODEC_SET_FILEBUF_CHUNKSIZE, 1024*512); mpc_int64_t new_offset = (ci->seek_time - 1)*frequency; if (mpc_decoder_seek_sample(&decoder, new_offset)) { samplesdone = new_offset; @@ -157,7 +153,6 @@ next_track: } ci->seek_complete(); /* reset chunksize */ - ci->configure(CODEC_SET_FILEBUF_CHUNKSIZE, 1024*16); } #else |