diff options
author | Miika Pekkarinen <miipekk@ihme.org> | 2005-11-18 20:21:13 +0000 |
---|---|---|
committer | Miika Pekkarinen <miipekk@ihme.org> | 2005-11-18 20:21:13 +0000 |
commit | 9c0f1a9e395a4a680e7b2532ebdb468cbeccaca5 (patch) | |
tree | 81c2f4619b1f12503c278dd71f71af47f57f19d0 /apps/codecs/mpa.c | |
parent | 88a2a8a53a875f6af90fa2b479dc281e752881d2 (diff) |
More stable playback with reduced stuttering when skipping tracks.
Removed CODEC_SET_FILEBUF_LIMIT setting; now playback.c determines how
to buffer the files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7970 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/mpa.c')
-rw-r--r-- | apps/codecs/mpa.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/codecs/mpa.c b/apps/codecs/mpa.c index c6342df262..0f575924d0 100644 --- a/apps/codecs/mpa.c +++ b/apps/codecs/mpa.c @@ -95,7 +95,6 @@ enum codec_status codec_start(struct codec_api *api) ci->configure(DSP_SET_SAMPLE_DEPTH, (int *)(MAD_F_FRACBITS)); ci->configure(DSP_SET_CLIP_MIN, (int *)-MAD_F_ONE); ci->configure(DSP_SET_CLIP_MAX, (int *)(MAD_F_ONE - 1)); - ci->configure(CODEC_SET_FILEBUF_LIMIT, (int *)(1024*1024*2)); ci->configure(CODEC_SET_FILEBUF_CHUNKSIZE, (int *)(1024*16)); ci->memset(&stream, 0, sizeof(struct mad_stream)); |