Updated copyright information and removed rcs id lines (problematic in branch merges)
I batch edited these files, so please let me know if I've accidentally removed anybody's
credit here.
2 SDL - Simple DirectMedia Layer
3 Copyright (C) 1997-2006 Sam Lantinga
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 #ifndef _SDL_dspaudio_h
24 #define _SDL_dspaudio_h
26 #include "SDL_sysaudio.h"
28 /* Hidden "this" pointer for the video functions */
29 #define _THIS SDL_AudioDevice *this
31 struct SDL_PrivateAudioData {
32 /* The file descriptor for the audio device */
35 /* The parent process id, to detect when application quits */
38 /* Raw mixing buffer */
42 #define FUDGE_TICKS 10 /* The scheduler overhead ticks per frame */
44 /* Old variable names */
45 #define audio_fd (this->hidden->audio_fd)
46 #define parent (this->hidden->parent)
47 #define mixbuf (this->hidden->mixbuf)
48 #define mixlen (this->hidden->mixlen)
49 #define frame_ticks (this->hidden->frame_ticks)
50 #define next_frame (this->hidden->next_frame)
52 #endif /* _SDL_dspaudio_h */