comparison alt_audio_convert.c @ 441:5b00e43ec23c

Patches to make SDL_sound more Visual C happy.
author Ryan C. Gordon <icculus@icculus.org>
date Fri, 31 Jan 2003 01:53:12 +0000
parents a65440b3a057
children 636796aed4e2
comparison
equal deleted inserted replaced
440:6d94441c854e 441:5b00e43ec23c
1009 } 1009 }
1010 } 1010 }
1011 1011
1012 1012
1013 int Sound_BuildAudioCVT(Sound_AudioCVT *Data, 1013 int Sound_BuildAudioCVT(Sound_AudioCVT *Data,
1014 Uint16 src_format, Uint8 src_channels, int src_rate, 1014 Uint16 src_format, Uint8 src_channels, Uint32 src_rate,
1015 Uint16 dst_format, Uint8 dst_channels, int dst_rate, Uint32 bufsize) 1015 Uint16 dst_format, Uint8 dst_channels, Uint32 dst_rate, Uint32 bufsize)
1016 { 1016 {
1017 SDL_AudioSpec src, dst; 1017 SDL_AudioSpec src, dst;
1018 int ret; 1018 int ret;
1019 1019
1020 fprintf (stderr, 1020 fprintf (stderr,