forked from len0rd/rockbox
Fix sound in Doom on H10 - we don't support 11025Hz so use 44100Hz instead.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10895 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e0cb0f6893
commit
cf7600d2d2
1 changed files with 3 additions and 3 deletions
|
|
@ -55,10 +55,10 @@
|
|||
#define BUFMUL 2
|
||||
#define MIXBUFFERSIZE (SAMPLECOUNT*BUFMUL)
|
||||
|
||||
#if (CONFIG_KEYPAD == IPOD_3G_PAD) || (CONFIG_KEYPAD == IPOD_4G_PAD)
|
||||
#define SAMPLERATE 44100 // 44100 22050 11025
|
||||
#else
|
||||
#if defined(HAVE_TLV320) || defined(HAVE_UDA1380)
|
||||
#define SAMPLERATE 11025 // 44100 22050 11025
|
||||
#else
|
||||
#define SAMPLERATE 44100 // 44100 22050 11025
|
||||
#endif
|
||||
#define SAMPLESIZE 2 // 16bit
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue