author | Sam Lantinga |
Sun, 24 Jan 2010 21:10:53 +0000 | |
changeset 3697 | f7b03b6838cb |
parent 3139 | 7f684f249ec9 |
child 5262 | b530ef003506 |
permissions | -rw-r--r-- |
slouken@3099 | 1 |
/* |
slouken@3099 | 2 |
SDL - Simple DirectMedia Layer |
slouken@3697 | 3 |
Copyright (C) 1997-2010 Sam Lantinga |
slouken@3099 | 4 |
|
slouken@3099 | 5 |
This library is free software; you can redistribute it and/or |
slouken@3697 | 6 |
modify it under the terms of the GNU Lesser General Public |
slouken@3099 | 7 |
License as published by the Free Software Foundation; either |
slouken@3697 | 8 |
version 2.1 of the License, or (at your option) any later version. |
slouken@3099 | 9 |
|
slouken@3099 | 10 |
This library is distributed in the hope that it will be useful, |
slouken@3099 | 11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
slouken@3099 | 12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
slouken@3697 | 13 |
Lesser General Public License for more details. |
slouken@3099 | 14 |
|
slouken@3697 | 15 |
You should have received a copy of the GNU Lesser General Public |
slouken@3697 | 16 |
License along with this library; if not, write to the Free Software |
slouken@3697 | 17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
slouken@3099 | 18 |
|
slouken@3099 | 19 |
Sam Lantinga |
slouken@3099 | 20 |
slouken@libsdl.org |
slouken@3099 | 21 |
*/ |
slouken@3099 | 22 |
|
slouken@3099 | 23 |
#include "SDL_config.h" |
slouken@3099 | 24 |
|
slouken@3099 | 25 |
#ifndef __SDL_QSA_AUDIO_H__ |
slouken@3099 | 26 |
#define __SDL_QSA_AUDIO_H__ |
slouken@3099 | 27 |
|
slouken@3099 | 28 |
#include <sys/asoundlib.h> |
slouken@3099 | 29 |
|
slouken@3099 | 30 |
#include "../SDL_sysaudio.h" |
slouken@3099 | 31 |
|
slouken@3099 | 32 |
/* Hidden "this" pointer for the audio functions */ |
slouken@3099 | 33 |
#define _THIS SDL_AudioDevice* this |
slouken@3099 | 34 |
|
slouken@3099 | 35 |
struct SDL_PrivateAudioData |
slouken@3099 | 36 |
{ |
slouken@3099 | 37 |
/* SDL capture state */ |
slouken@3099 | 38 |
int iscapture; |
slouken@3099 | 39 |
|
slouken@3099 | 40 |
/* The audio device handle */ |
slouken@3099 | 41 |
int cardno; |
slouken@3099 | 42 |
int deviceno; |
slouken@3139 | 43 |
snd_pcm_t *audio_handle; |
slouken@3099 | 44 |
|
slouken@3099 | 45 |
/* The audio file descriptor */ |
slouken@3099 | 46 |
int audio_fd; |
slouken@3099 | 47 |
|
slouken@3099 | 48 |
/* Select timeout status */ |
slouken@3099 | 49 |
uint32_t timeout_on_wait; |
slouken@3099 | 50 |
|
slouken@3099 | 51 |
/* Raw mixing buffer */ |
slouken@3139 | 52 |
Uint8 *pcm_buf; |
slouken@3099 | 53 |
Uint32 pcm_len; |
slouken@3099 | 54 |
}; |
slouken@3099 | 55 |
|
slouken@3099 | 56 |
#endif /* __SDL_QSA_AUDIO_H__ */ |
slouken@3099 | 57 |
|
slouken@3099 | 58 |
/* vi: set ts=4 sw=4 expandtab: */ |