mirror of
https://github.com/yawut/SDL.git
synced 2026-04-25 15:58:04 -05:00
Minor cleanup in the mint driver that was sitting on my laptop (sorry!).
This commit is contained in:
parent
9d4b500741
commit
56a3951902
|
|
@ -227,45 +227,44 @@ Mint_CheckAudio(_THIS, SDL_AudioSpec * spec)
|
|||
}
|
||||
|
||||
while ((!valid_datatype) && (test_format)) {
|
||||
/* Check formats available */
|
||||
snd_format = Sndstatus(SND_QUERYFORMATS);
|
||||
spec->format = test_format;
|
||||
resolution = SDL_AUDIO_BITSIZE(spec->format);
|
||||
format_signed = SDL_AUDIO_ISSIGNED(spec->format);
|
||||
format_bigendian = SDL_AUDIO_ISBIGENDIAN(spec->format);
|
||||
switch (test_format) {
|
||||
case AUDIO_U8:
|
||||
case AUDIO_S8:
|
||||
case AUDIO_U16LSB:
|
||||
case AUDIO_S16LSB:
|
||||
case AUDIO_U16MSB:
|
||||
case AUDIO_S16MSB:
|
||||
case AUDIO_S32LSB:
|
||||
case AUDIO_S32MSB:
|
||||
/* no float support... */
|
||||
resolution = SDL_AUDIO_BITSIZE(spec->format);
|
||||
format_signed = SDL_AUDIO_ISSIGNED(spec->format);
|
||||
format_bigendian = SDL_AUDIO_ISBIGENDIAN(spec->format);
|
||||
|
||||
/* Check formats available */
|
||||
snd_format = Sndstatus(SND_QUERYFORMATS);
|
||||
switch (resolution) {
|
||||
case 8:
|
||||
case AUDIO_U8:
|
||||
case AUDIO_S8:
|
||||
if (snd_format & SND_FORMAT8) {
|
||||
valid_datatype = 1;
|
||||
snd_format = Sndstatus(SND_QUERY8BIT);
|
||||
}
|
||||
break;
|
||||
case 16:
|
||||
|
||||
case AUDIO_U16LSB:
|
||||
case AUDIO_S16LSB:
|
||||
case AUDIO_U16MSB:
|
||||
case AUDIO_S16MSB:
|
||||
if (snd_format & SND_FORMAT16) {
|
||||
valid_datatype = 1;
|
||||
snd_format = Sndstatus(SND_QUERY16BIT);
|
||||
}
|
||||
break;
|
||||
case 32:
|
||||
|
||||
case AUDIO_S32LSB:
|
||||
case AUDIO_S32MSB:
|
||||
if (snd_format & SND_FORMAT32) {
|
||||
valid_datatype = 1;
|
||||
snd_format = Sndstatus(SND_QUERY32BIT);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
break;
|
||||
/* no float support... */
|
||||
|
||||
default:
|
||||
test_format = SDL_NextAudioFormat();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user