Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
69 lines (54 loc) · 2.07 KB

SDL_nto_audio.h

File metadata and controls

69 lines (54 loc) · 2.07 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
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
Sep 21, 2003
Sep 21, 2003
24
25
#ifndef __SDL_NTO_AUDIO_H__
#define __SDL_NTO_AUDIO_H__
Apr 26, 2001
Apr 26, 2001
26
27
28
#include <sys/asoundlib.h>
Feb 16, 2006
Feb 16, 2006
29
30
#include "../SDL_sysaudio.h"
Sep 21, 2003
Sep 21, 2003
31
/* Hidden "this" pointer for the audio functions */
Apr 26, 2001
Apr 26, 2001
32
33
#define _THIS SDL_AudioDevice *this
Sep 21, 2003
Sep 21, 2003
34
35
36
37
38
struct SDL_PrivateAudioData
{
/* The audio device handle */
int cardno;
int deviceno;
Jul 10, 2006
Jul 10, 2006
39
snd_pcm_t *audio_handle;
Apr 26, 2001
Apr 26, 2001
40
Sep 21, 2003
Sep 21, 2003
41
42
/* The audio file descriptor */
int audio_fd;
Apr 26, 2001
Apr 26, 2001
43
Sep 21, 2003
Sep 21, 2003
44
45
/* The parent process id, to detect when application quits */
pid_t parent;
Apr 26, 2001
Apr 26, 2001
46
Sep 21, 2003
Sep 21, 2003
47
/* Raw mixing buffer */
Jul 10, 2006
Jul 10, 2006
48
Uint8 *pcm_buf;
Sep 21, 2003
Sep 21, 2003
49
50
51
52
53
Uint32 pcm_len;
/* QSA parameters */
snd_pcm_channel_status_t cstatus;
snd_pcm_channel_params_t cparams;
Jul 10, 2006
Jul 10, 2006
54
snd_pcm_channel_setup_t csetup;
Apr 26, 2001
Apr 26, 2001
55
56
};
Sep 21, 2003
Sep 21, 2003
57
58
59
60
61
62
63
64
65
66
#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
67
Sep 21, 2003
Sep 21, 2003
68
#endif /* __SDL_NTO_AUDIO_H__ */
Jul 10, 2006
Jul 10, 2006
69
/* vi: set ts=4 sw=4 expandtab: */