1
0
Fork 0
forked from len0rd/rockbox

Temporary fix for the high-pitched sounds on iPod: they should sound correct now, but the real problem (frequency adjustment) still needs fixing; this is merely a workaround.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9698 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Zakk Roberts 2006-04-17 01:35:09 +00:00
parent 6f8af215b9
commit cc8f80ad9b

View file

@ -55,7 +55,11 @@
#define BUFMUL 4
#define MIXBUFFERSIZE (SAMPLECOUNT*BUFMUL)
#if (CONFIG_KEYPAD == IPOD_3G_PAD) || (CONFIG_KEYPAD == IPOD_4G_PAD)
#define SAMPLERATE 44100 // 44100 22050 11025
#else
#define SAMPLERATE 11025 // 44100 22050 11025
#endif
#define SAMPLESIZE 2 // 16bit
// The global mixing buffer.