World of Might and Magic  0.2.0
Open reimplementation of Might and Magic 6 7 8 game engine
Структура SDL_AudioCVT

A structure to hold a set of audio conversion filters and buffers. Подробнее...

#include <SDL_audio.h>

Открытые атрибуты

int needed
 
SDL_AudioFormat src_format
 
SDL_AudioFormat dst_format
 
double rate_incr
 
Uint8buf
 
int len
 
int len_cvt
 
int len_mult
 
double len_ratio
 
SDL_AudioFilter filters [SDL_AUDIOCVT_MAX_FILTERS+1]
 
int filter_index
 

Подробное описание

A structure to hold a set of audio conversion filters and buffers.

Note that various parts of the conversion pipeline can take advantage of SIMD operations (like SSE2, for example). SDL_AudioCVT doesn't require you to pass it aligned data, but can possibly run much faster if you set both its (buf) field to a pointer that is aligned to 16 bytes, and its (len) field to something that's a multiple of 16, if possible.

См. определение в файле SDL_audio.h строка 226

Данные класса

◆ needed

int SDL_AudioCVT::needed

Set to 1 if conversion possible

См. определение в файле SDL_audio.h строка 228

◆ src_format

SDL_AudioFormat SDL_AudioCVT::src_format

Source audio format

См. определение в файле SDL_audio.h строка 229

◆ dst_format

SDL_AudioFormat SDL_AudioCVT::dst_format

Target audio format

См. определение в файле SDL_audio.h строка 230

◆ rate_incr

double SDL_AudioCVT::rate_incr

Rate conversion increment

См. определение в файле SDL_audio.h строка 231

◆ buf

Uint8* SDL_AudioCVT::buf

Buffer to hold entire audio data

См. определение в файле SDL_audio.h строка 232

◆ len

int SDL_AudioCVT::len

Length of original audio buffer

См. определение в файле SDL_audio.h строка 233

◆ len_cvt

int SDL_AudioCVT::len_cvt

Length of converted audio buffer

См. определение в файле SDL_audio.h строка 234

◆ len_mult

int SDL_AudioCVT::len_mult

buffer must be len*len_mult big

См. определение в файле SDL_audio.h строка 235

◆ len_ratio

double SDL_AudioCVT::len_ratio

Given len, final size is len*len_ratio

См. определение в файле SDL_audio.h строка 236

◆ filters

SDL_AudioFilter SDL_AudioCVT::filters[SDL_AUDIOCVT_MAX_FILTERS+1]

NULL-terminated list of filter functions

См. определение в файле SDL_audio.h строка 237

◆ filter_index

int SDL_AudioCVT::filter_index

Current audio conversion function

См. определение в файле SDL_audio.h строка 238


Объявления и описания членов структуры находятся в файле: