author | Sam Lantinga |
Sat, 18 May 2013 14:17:52 -0700 | |
changeset 7191 | 75360622e65f |
parent 6967 | adc80d085ddf |
child 8093 | b43765095a6f |
permissions | -rw-r--r-- |
slouken@0 | 1 |
/* |
slouken@5535 | 2 |
Simple DirectMedia Layer |
slouken@6885 | 3 |
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org> |
slouken@0 | 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@0 | 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@0 | 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@0 | 20 |
*/ |
slouken@1402 | 21 |
#include "SDL_config.h" |
slouken@0 | 22 |
|
icculus@2049 | 23 |
#ifndef _SDL_sunaudio_h |
icculus@2049 | 24 |
#define _SDL_sunaudio_h |
slouken@0 | 25 |
|
slouken@1361 | 26 |
#include "../SDL_sysaudio.h" |
slouken@0 | 27 |
|
icculus@2049 | 28 |
/* Hidden "this" pointer for the audio functions */ |
slouken@7191 | 29 |
#define _THIS SDL_AudioDevice *this |
slouken@0 | 30 |
|
slouken@1895 | 31 |
struct SDL_PrivateAudioData |
slouken@1895 | 32 |
{ |
slouken@1895 | 33 |
/* The file descriptor for the audio device */ |
slouken@1895 | 34 |
int audio_fd; |
slouken@0 | 35 |
|
icculus@1982 | 36 |
SDL_AudioFormat audio_fmt; /* The app audio format */ |
slouken@1895 | 37 |
Uint8 *mixbuf; /* The app mixing buffer */ |
slouken@1895 | 38 |
int ulaw_only; /* Flag -- does hardware only output U-law? */ |
slouken@1895 | 39 |
Uint8 *ulaw_buf; /* The U-law mixing buffer */ |
slouken@1895 | 40 |
Sint32 written; /* The number of samples written */ |
slouken@1895 | 41 |
int fragsize; /* The audio fragment size in samples */ |
slouken@1895 | 42 |
int frequency; /* The audio frequency in KHz */ |
slouken@0 | 43 |
}; |
slouken@0 | 44 |
|
icculus@2049 | 45 |
#endif /* _SDL_sunaudio_h */ |
icculus@2049 | 46 |
|
slouken@1895 | 47 |
/* vi: set ts=4 sw=4 expandtab: */ |