Skip to content

Latest commit

 

History

History
66 lines (52 loc) · 2.01 KB

SDL_nto_audio.h

File metadata and controls

66 lines (52 loc) · 2.01 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Jan 4, 2004
Jan 4, 2004
3
Copyright (C) 1997-2004 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
22
*/
Sep 21, 2003
Sep 21, 2003
23
24
#ifndef __SDL_NTO_AUDIO_H__
#define __SDL_NTO_AUDIO_H__
Apr 26, 2001
Apr 26, 2001
25
26
27
28
#include "SDL_sysaudio.h"
#include <sys/asoundlib.h>
Sep 21, 2003
Sep 21, 2003
29
/* Hidden "this" pointer for the audio functions */
Apr 26, 2001
Apr 26, 2001
30
31
#define _THIS SDL_AudioDevice *this
Sep 21, 2003
Sep 21, 2003
32
33
34
35
36
37
struct SDL_PrivateAudioData
{
/* The audio device handle */
int cardno;
int deviceno;
snd_pcm_t* audio_handle;
Apr 26, 2001
Apr 26, 2001
38
Sep 21, 2003
Sep 21, 2003
39
40
/* The audio file descriptor */
int audio_fd;
Apr 26, 2001
Apr 26, 2001
41
Sep 21, 2003
Sep 21, 2003
42
43
/* The parent process id, to detect when application quits */
pid_t parent;
Apr 26, 2001
Apr 26, 2001
44
Sep 21, 2003
Sep 21, 2003
45
46
47
48
49
50
51
52
/* Raw mixing buffer */
Uint8* pcm_buf;
Uint32 pcm_len;
/* QSA parameters */
snd_pcm_channel_status_t cstatus;
snd_pcm_channel_params_t cparams;
snd_pcm_channel_setup_t csetup;
Apr 26, 2001
Apr 26, 2001
53
54
};
Sep 21, 2003
Sep 21, 2003
55
56
57
58
59
60
61
62
63
64
#define cardno (this->hidden->cardno)
#define deviceno (this->hidden->deviceno)
#define audio_handle (this->hidden->audio_handle)
#define audio_fd (this->hidden->audio_fd)
#define parent (this->hidden->parent)
#define pcm_buf (this->hidden->pcm_buf)
#define pcm_len (this->hidden->pcm_len)
#define cstatus (this->hidden->cstatus)
#define cparams (this->hidden->cparams)
#define csetup (this->hidden->csetup)
Apr 26, 2001
Apr 26, 2001
65
Sep 21, 2003
Sep 21, 2003
66
#endif /* __SDL_NTO_AUDIO_H__ */