Wiki Page Content

Differences between revisions 11 and 12
Revision 11 as of 2013-07-14 06:36:16
Size: 650
Editor: RainerDeyke
Comment: Fixed weird formatting and brought text in line with doxygen.
Revision 12 as of 2013-07-14 06:42:29
Size: 893
Editor: RainerDeyke
Comment: Added code example
Deletions are marked like this. Additions are marked like this.
Line 16: Line 16:
You can add your code example here int i;

for ( i = 0; i < SDL_GetNumAudioDrivers(); ++i ) {
    const char* driver_name = SDL_GetAudioDriver(i);
    if (SDL_AudioInit(driver_name)) {
        printf("Audio driver failed to initialize: %s\n", driver_name);
        continue;
    }
    SDL_AudioQuit();
}

SDL_AudioQuit

Use this function to shut down audio if you initialized it with SDL_AudioInit().

Syntax

void SDL_AudioQuit(void)

Code Examples

int i;

for ( i = 0; i < SDL_GetNumAudioDrivers(); ++i ) {
    const char* driver_name = SDL_GetAudioDriver(i);
    if (SDL_AudioInit(driver_name)) {
        printf("Audio driver failed to initialize: %s\n", driver_name);
        continue;
    }
    SDL_AudioQuit();
}

Remarks

This function is used internally, and should not be used unless you have a specific need to specify the audio driver you want to use. You should normally use SDL_Quit() or SDL_QuitSubSystem().


CategoryAPI, CategoryAudio

None: SDL_AudioQuit (last edited 2013-11-02 13:01:22 by PhilippWiesemann)

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit