author | Ryan C. Gordon |
Thu, 25 Aug 2011 03:11:28 -0400 | |
changeset 5646 | fe1df351ca3d |
parent 5605 | 9269bf952041 |
child 6138 | 4c64952a58fb |
permissions | -rw-r--r-- |
slouken@935 | 1 |
/* |
slouken@5535 | 2 |
Simple DirectMedia Layer |
slouken@5535 | 3 |
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org> |
slouken@935 | 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@935 | 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@935 | 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@935 | 20 |
*/ |
slouken@1402 | 21 |
#include "SDL_config.h" |
slouken@935 | 22 |
|
slouken@935 | 23 |
#ifndef _SDL_coreaudio_h |
slouken@935 | 24 |
#define _SDL_coreaudio_h |
slouken@935 | 25 |
|
slouken@1361 | 26 |
#include "../SDL_sysaudio.h" |
slouken@935 | 27 |
|
icculus@5596 | 28 |
#if !defined(__IPHONEOS__) |
icculus@5596 | 29 |
#define MACOSX_COREAUDIO 1 |
icculus@5596 | 30 |
#endif |
icculus@5596 | 31 |
|
icculus@5605 | 32 |
#if MACOSX_COREAUDIO |
icculus@5605 | 33 |
#include <CoreAudio/CoreAudio.h> |
icculus@5605 | 34 |
#include <CoreServices/CoreServices.h> |
icculus@5646 | 35 |
#if MAC_OS_X_VERSION_MAX_ALLOWED <= 1050 |
icculus@5605 | 36 |
#include <AudioUnit/AUNTComponent.h> |
icculus@5605 | 37 |
#endif |
icculus@5605 | 38 |
#endif |
icculus@5605 | 39 |
|
icculus@5605 | 40 |
#include <AudioUnit/AudioUnit.h> |
icculus@5605 | 41 |
|
icculus@2049 | 42 |
/* Hidden "this" pointer for the audio functions */ |
slouken@935 | 43 |
#define _THIS SDL_AudioDevice *this |
slouken@935 | 44 |
|
slouken@1895 | 45 |
struct SDL_PrivateAudioData |
slouken@1895 | 46 |
{ |
icculus@2049 | 47 |
AudioUnit audioUnit; |
icculus@2056 | 48 |
int audioUnitOpened; |
slouken@1895 | 49 |
void *buffer; |
slouken@1895 | 50 |
UInt32 bufferOffset; |
slouken@1895 | 51 |
UInt32 bufferSize; |
icculus@5596 | 52 |
#if MACOSX_COREAUDIO |
icculus@2049 | 53 |
AudioDeviceID deviceID; |
icculus@5596 | 54 |
#endif |
slouken@935 | 55 |
}; |
slouken@935 | 56 |
|
slouken@935 | 57 |
#endif /* _SDL_coreaudio_h */ |
slouken@1895 | 58 |
/* vi: set ts=4 sw=4 expandtab: */ |