comparison libao2/ao_sdl.c @ 21733:cc6dc96035b8

Amiga OS 4 needs a large sample size. patch by Andrea Palmat, andrea amigasoft net
author diego
date Sat, 23 Dec 2006 23:26:13 +0000
parents f580a7755ac5
children 5ecca25377e0
comparison
equal deleted inserted replaced
21732:893e314fff49 21733:cc6dc96035b8
38 38
39 // turn this on if you want to use the slower SDL_MixAudio 39 // turn this on if you want to use the slower SDL_MixAudio
40 #undef USE_SDL_INTERNAL_MIXER 40 #undef USE_SDL_INTERNAL_MIXER
41 41
42 // Samplesize used by the SDLlib AudioSpec struct 42 // Samplesize used by the SDLlib AudioSpec struct
43 #ifdef WIN32 43 #if defined(WIN32) || defined(SYS_AMIGAOS4)
44 #define SAMPLESIZE 2048 44 #define SAMPLESIZE 2048
45 #else 45 #else
46 #define SAMPLESIZE 1024 46 #define SAMPLESIZE 1024
47 #endif 47 #endif
48 48