comparison src/audio/qsa/SDL_qsa_audio.h @ 3139:7f684f249ec9

indent
author Sam Lantinga <slouken@libsdl.org>
date Sat, 23 May 2009 22:41:08 +0000
parents 82e60908fab1
children f7b03b6838cb
comparison
equal deleted inserted replaced
3125:d71d8ceda8b3 3139:7f684f249ec9
42 int iscapture; 42 int iscapture;
43 43
44 /* The audio device handle */ 44 /* The audio device handle */
45 int cardno; 45 int cardno;
46 int deviceno; 46 int deviceno;
47 snd_pcm_t* audio_handle; 47 snd_pcm_t *audio_handle;
48 48
49 /* The audio file descriptor */ 49 /* The audio file descriptor */
50 int audio_fd; 50 int audio_fd;
51 51
52 /* Select timeout status */ 52 /* Select timeout status */
53 uint32_t timeout_on_wait; 53 uint32_t timeout_on_wait;
54 54
55 /* Raw mixing buffer */ 55 /* Raw mixing buffer */
56 Uint8* pcm_buf; 56 Uint8 *pcm_buf;
57 Uint32 pcm_len; 57 Uint32 pcm_len;
58 }; 58 };
59 59
60 #endif /* __SDL_QSA_AUDIO_H__ */ 60 #endif /* __SDL_QSA_AUDIO_H__ */
61 61