typedef struct{
int needed;
Uint16 src_format;
Uint16 dest_format;
double rate_incr;
Uint8 *buf;
int len;
int len_cvt;
int len_mult;
double len_ratio;
void (*filters[10])(struct SDL_AudioCVT *cvt, Uint16 format);
int filter_index;
} SDL_AudioCVT;
20 needed Set to one if the conversion is possible
20 src_format Audio format of the source
20 dest_format Audio format of the destination
20 rate_incr Rate conversion increment
20 buf Audio buffer
20 len Length of the original audio buffer in bytes
20 len_cvt Length of converted audio buffer in bytes (calculated)
20 len_mult buf must be len*len_mult bytes in size(calculated)
20 len_ratio Final audio size is len*len_ratio
20 filters[10](..) Pointers to functions needed for this conversion
20 filter_index Current conversion function
The SDL_AudioCVT is used to convert audio data between different formats. A SDL_AudioCVT structure is created with the SDL_BuildAudioCVT function, while the actual conversion is done by the SDL_ConvertAudio function.
Many of the fields in the SDL_AudioCVT structure should be considered private and their function will not be discussed here.
SDL_BuildAudioCVT, SDL_ConvertAudio, SDL_AudioSpec
created by instant / docbook-to-man, Tue 11 Sep 2001, 22:58