author | Ryan C. Gordon |
Sun, 24 Nov 2013 23:56:17 -0500 | |
changeset 8093 | b43765095a6f |
parent 6885 | 700f1b25f77f |
child 8149 | 681eb46b8ac4 |
permissions | -rw-r--r-- |
slouken@3099 | 1 |
/* |
slouken@5535 | 2 |
Simple DirectMedia Layer |
slouken@6885 | 3 |
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org> |
slouken@3099 | 4 |
|
slouken@5535 | 5 |
This software is provided 'as-is', without any express or implied |
slouken@5535 | 6 |
warranty. In no event will the authors be held liable for any damages |
slouken@5535 | 7 |
arising from the use of this software. |
slouken@3099 | 8 |
|
slouken@5535 | 9 |
Permission is granted to anyone to use this software for any purpose, |
slouken@5535 | 10 |
including commercial applications, and to alter it and redistribute it |
slouken@5535 | 11 |
freely, subject to the following restrictions: |
slouken@3099 | 12 |
|
slouken@5535 | 13 |
1. The origin of this software must not be misrepresented; you must not |
slouken@5535 | 14 |
claim that you wrote the original software. If you use this software |
slouken@5535 | 15 |
in a product, an acknowledgment in the product documentation would be |
slouken@5535 | 16 |
appreciated but is not required. |
slouken@5535 | 17 |
2. Altered source versions must be plainly marked as such, and must not be |
slouken@5535 | 18 |
misrepresented as being the original software. |
slouken@5535 | 19 |
3. This notice may not be removed or altered from any source distribution. |
slouken@3099 | 20 |
*/ |
slouken@3099 | 21 |
|
icculus@8093 | 22 |
#include "../../SDL_internal.h" |
slouken@3099 | 23 |
|
slouken@3099 | 24 |
#ifndef __SDL_QSA_AUDIO_H__ |
slouken@3099 | 25 |
#define __SDL_QSA_AUDIO_H__ |
slouken@3099 | 26 |
|
slouken@3099 | 27 |
#include <sys/asoundlib.h> |
slouken@3099 | 28 |
|
slouken@3099 | 29 |
#include "../SDL_sysaudio.h" |
slouken@3099 | 30 |
|
slouken@3099 | 31 |
/* Hidden "this" pointer for the audio functions */ |
slouken@3099 | 32 |
#define _THIS SDL_AudioDevice* this |
slouken@3099 | 33 |
|
slouken@3099 | 34 |
struct SDL_PrivateAudioData |
slouken@3099 | 35 |
{ |
slouken@3099 | 36 |
/* SDL capture state */ |
slouken@3099 | 37 |
int iscapture; |
slouken@3099 | 38 |
|
slouken@3099 | 39 |
/* The audio device handle */ |
slouken@3099 | 40 |
int cardno; |
slouken@3099 | 41 |
int deviceno; |
slouken@3139 | 42 |
snd_pcm_t *audio_handle; |
slouken@3099 | 43 |
|
slouken@3099 | 44 |
/* The audio file descriptor */ |
slouken@3099 | 45 |
int audio_fd; |
slouken@3099 | 46 |
|
slouken@3099 | 47 |
/* Select timeout status */ |
slouken@3099 | 48 |
uint32_t timeout_on_wait; |
slouken@3099 | 49 |
|
slouken@3099 | 50 |
/* Raw mixing buffer */ |
slouken@3139 | 51 |
Uint8 *pcm_buf; |
slouken@3099 | 52 |
Uint32 pcm_len; |
slouken@3099 | 53 |
}; |
slouken@3099 | 54 |
|
slouken@3099 | 55 |
#endif /* __SDL_QSA_AUDIO_H__ */ |
slouken@3099 | 56 |
|
slouken@3099 | 57 |
/* vi: set ts=4 sw=4 expandtab: */ |