1
0
Fork 0
forked from len0rd/rockbox

libpcm: output depth corrects for the sign 1bit. linear pcm corrects bits shift.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25131 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Yoshihisa Uchida 2010-03-12 11:34:09 +00:00
parent c7517f5662
commit 2a9c42d1ed
7 changed files with 9 additions and 9 deletions

View file

@ -57,7 +57,7 @@ enum codec_status codec_main(void)
int offset = 0;
/* Generic codec initialisation */
ci->configure(DSP_SET_SAMPLE_DEPTH, PCM_OUTPUT_DEPTH);
ci->configure(DSP_SET_SAMPLE_DEPTH, PCM_OUTPUT_DEPTH-1);
next_track:
if (codec_init()) {