|
⇤ ← Revision 1 as of 2009-11-18 18:50:53
Size: 771
Comment: create page, add content
|
Size: 801
Comment: content added
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 5: | Line 5: |
| Use this function to pause and unpause audio functions. | Use this function to pause and unpause audio playback. |
| Line 16: | Line 16: |
| ||'''pause_on'''|||| | ||'''pause_on'''||non-zero to pause, 0 to unpause|| |
SDL_PauseAudio
Use this function to pause and unpause audio playback.
Syntax
void SDL_PauseAudio(int pause_on)
Function Parameters
pause_on |
non-zero to pause, 0 to unpause |
Code Examples
You can add your code example here
Remarks
This function pauses and unpauses the audio callback processing. It should be called with pause_on=0 after opening the audio device to start playing sound. This is so you can safely initialize data for your callback function after opening the audio device. Silence will be written to the audio device during the pause.
