Mercurial > sdl-ios-xcode
comparison src/audio/alsa/SDL_alsa_audio.h @ 3627:631173ffd68f
Merged r4991:5154 from branches/SDL-1.2/src/audio/alsa: many 1.2.14 ALSA fixes.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sun, 10 Jan 2010 07:40:12 +0000 |
parents | 4e83cdb58134 |
children | f7b03b6838cb |
comparison
equal
deleted
inserted
replaced
3626:596468a8459e | 3627:631173ffd68f |
---|---|
34 struct SDL_PrivateAudioData | 34 struct SDL_PrivateAudioData |
35 { | 35 { |
36 /* The audio device handle */ | 36 /* The audio device handle */ |
37 snd_pcm_t *pcm_handle; | 37 snd_pcm_t *pcm_handle; |
38 | 38 |
39 /* The parent process id, to detect when application quits */ | |
40 pid_t parent; | |
41 | |
42 /* Raw mixing buffer */ | 39 /* Raw mixing buffer */ |
43 Uint8 *mixbuf; | 40 Uint8 *mixbuf; |
44 int mixlen; | 41 int mixlen; |
45 }; | 42 }; |
46 | 43 |