Turned off dithering in MPEG audio codec. It's just too slow.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6896 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
9ca433f7bb
commit
c6bd12f831
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ enum codec_status codec_start(struct codec_api* api)
|
|||
ci->configure(DSP_SET_CLIP_MIN, (int *)-MAD_F_ONE);
|
||||
ci->configure(DSP_SET_CLIP_MAX, (int *)(MAD_F_ONE - 1));
|
||||
ci->configure(DSP_SET_SAMPLE_DEPTH, (int *)(MAD_F_FRACBITS));
|
||||
ci->configure(DSP_DITHER, (bool *)true);
|
||||
ci->configure(DSP_DITHER, (bool *)false);
|
||||
ci->configure(DSP_SET_STEREO_MODE, (int *)STEREO_NONINTERLEAVED);
|
||||
ci->configure(CODEC_DSP_ENABLE, (bool *)true);
|
||||
|
||||
|
|
Loading…
Reference in a new issue