Sound_AudioInfo

Langue: en

Autres versions - même langue

Version: 380802 (fedora - 01/12/10)

Section: 3 (Bibliothèques de fonctions)

NAME

Sound_AudioInfo -

Information about an existing sample's format.

SYNOPSIS


#include <SDL_sound.h>

Data Fields


Uint16 format

Uint8 channels

Uint32 rate

Detailed Description

Information about an existing sample's format.

These are the basics of a decoded sample's data structure: data format (see AUDIO_U8 and friends in SDL_audio.h), number of channels, and sample rate. If you need more explanation than that, you should stop developing sound code right now.

See also:

Sound_SampleNew
Sound_SampleNewFromFile

Field Documentation

Uint8 Sound_AudioInfo::channelsNumber of sound channels. 1 == mono, 2 == stereo.

Uint16 Sound_AudioInfo::formatEquivalent of SDL_AudioSpec.format.

Uint32 Sound_AudioInfo::rateSample rate; frequency of sample points per second.

Author

Generated automatically by Doxygen for SDL_sound from the source code.