Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Added a FIXME and macro to sun audio.
- Loading branch information
Showing
with
2 additions
and
1 deletion.
-
+2
−1
src/audio/sun/SDL_sunaudio.c
|
@@ -265,7 +265,7 @@ DSP_OpenAudio(_THIS, SDL_AudioSpec * spec) |
|
|
ulaw_buf = NULL; |
|
|
|
|
|
/* Determine the audio parameters from the AudioSpec */ |
|
|
switch (spec->format & 0xFF) { |
|
|
switch (SDL_AUDIO_BITSIZE(spec->format)) { |
|
|
|
|
|
case 8: |
|
|
{ /* Unsigned 8 bit audio data */ |
|
@@ -287,6 +287,7 @@ DSP_OpenAudio(_THIS, SDL_AudioSpec * spec) |
|
|
|
|
|
default: |
|
|
{ |
|
|
/* !!! FIXME: fallback to conversion on unsupported types! */ |
|
|
SDL_SetError("Unsupported audio format"); |
|
|
return (-1); |
|
|
} |
|
|