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

Latest commit

 

History

History
157 lines (127 loc) · 4.07 KB

SDL_androidaudio.c

File metadata and controls

157 lines (127 loc) · 4.07 KB
 
Jul 27, 2010
Jul 27, 2010
1
/*
Apr 8, 2011
Apr 8, 2011
2
3
Simple DirectMedia Layer
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org>
Jul 27, 2010
Jul 27, 2010
4
Apr 8, 2011
Apr 8, 2011
5
6
7
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Jul 27, 2010
Jul 27, 2010
8
Apr 8, 2011
Apr 8, 2011
9
10
11
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
Jul 27, 2010
Jul 27, 2010
12
Apr 8, 2011
Apr 8, 2011
13
14
15
16
17
18
19
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Jul 27, 2010
Jul 27, 2010
20
21
22
23
24
25
26
27
*/
#include "SDL_config.h"
/* Output audio to Android */
#include "SDL_audio.h"
#include "../SDL_audio_c.h"
#include "SDL_androidaudio.h"
Jan 13, 2011
Jan 13, 2011
28
Jan 25, 2011
Jan 25, 2011
29
#include "../../core/android/SDL_android.h"
Aug 14, 2010
Aug 14, 2010
30
Jul 27, 2010
Jul 27, 2010
31
32
#include <android/log.h>
Jan 13, 2011
Jan 13, 2011
33
34
static void * audioDevice;
Jul 27, 2010
Jul 27, 2010
35
36
37
static int
AndroidAUD_OpenDevice(_THIS, const char *devname, int iscapture)
{
Jan 13, 2011
Jan 13, 2011
38
SDL_AudioFormat test_format;
Aug 14, 2010
Aug 14, 2010
39
40
int valid_datatype = 0;
Jan 13, 2011
Jan 13, 2011
41
42
43
44
45
46
47
48
49
50
51
52
if (iscapture) {
//TODO: implement capture
SDL_SetError("Capture not supported on Android");
return 0;
}
if (audioDevice != NULL) {
SDL_SetError("Only one audio device at a time please!");
return 0;
}
audioDevice = this;
Aug 14, 2010
Aug 14, 2010
53
54
55
56
57
58
59
60
this->hidden = SDL_malloc(sizeof(*(this->hidden)));
if (!this->hidden) {
SDL_OutOfMemory();
return 0;
}
SDL_memset(this->hidden, 0, (sizeof *this->hidden));
Jan 13, 2011
Jan 13, 2011
61
62
63
64
test_format = SDL_FirstAudioFormat(this->spec.format);
while (test_format != 0) { // no "UNKNOWN" constant
if ((test_format == AUDIO_U8) || (test_format == AUDIO_S16LSB)) {
this->spec.format = test_format;
Aug 14, 2010
Aug 14, 2010
65
66
break;
}
Jan 13, 2011
Jan 13, 2011
67
test_format = SDL_NextAudioFormat();
Aug 14, 2010
Aug 14, 2010
68
}
Jul 27, 2010
Jul 27, 2010
69
Jan 13, 2011
Jan 13, 2011
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
if (test_format == 0) {
// Didn't find a compatible format :(
SDL_SetError("No compatible audio format!");
return 0;
}
if (this->spec.channels > 1) {
this->spec.channels = 2;
} else {
this->spec.channels = 1;
}
if (this->spec.freq < 8000) {
this->spec.freq = 8000;
}
if (this->spec.freq > 48000) {
this->spec.freq = 48000;
}
// TODO: pass in/return a (Java) device ID, also whether we're opening for input or output
this->spec.samples = Android_JNI_OpenAudioDevice(this->spec.freq, this->spec.format == AUDIO_U8 ? 0 : 1, this->spec.channels, this->spec.samples);
SDL_CalculateAudioSpec(&this->spec);
if (this->spec.samples == 0) {
// Init failed?
SDL_SetError("Java-side initialization failed!");
return 0;
}
Jul 27, 2010
Jul 27, 2010
99
100
101
102
103
104
return 1;
}
static void
AndroidAUD_PlayDevice(_THIS)
{
Jan 13, 2011
Jan 13, 2011
105
Android_JNI_WriteAudioBuffer();
Jul 27, 2010
Jul 27, 2010
106
107
108
109
110
}
static Uint8 *
AndroidAUD_GetDeviceBuf(_THIS)
{
Jan 13, 2011
Jan 13, 2011
111
return Android_JNI_GetAudioBuffer();
Jul 27, 2010
Jul 27, 2010
112
113
114
115
116
}
static void
AndroidAUD_CloseDevice(_THIS)
{
Jan 13, 2011
Jan 13, 2011
117
118
119
120
121
122
123
124
125
if (this->hidden != NULL) {
SDL_free(this->hidden);
this->hidden = NULL;
}
Android_JNI_CloseAudioDevice();
if (audioDevice == this) {
audioDevice = NULL;
}
Jul 27, 2010
Jul 27, 2010
126
127
128
129
130
131
132
133
134
135
136
137
}
static int
AndroidAUD_Init(SDL_AudioDriverImpl * impl)
{
/* Set the function pointers */
impl->OpenDevice = AndroidAUD_OpenDevice;
impl->PlayDevice = AndroidAUD_PlayDevice;
impl->GetDeviceBuf = AndroidAUD_GetDeviceBuf;
impl->CloseDevice = AndroidAUD_CloseDevice;
/* and the capabilities */
Jan 13, 2011
Jan 13, 2011
138
impl->ProvidesOwnCallbackThread = 1;
Jul 27, 2010
Jul 27, 2010
139
140
141
142
143
144
145
146
147
148
149
impl->HasCaptureSupport = 0; //TODO
impl->OnlyHasDefaultOutputDevice = 1;
impl->OnlyHasDefaultInputDevice = 1;
return 1; /* this audio target is available. */
}
AudioBootStrap ANDROIDAUD_bootstrap = {
"android", "SDL Android audio driver", AndroidAUD_Init, 0 /*1? */
};
Jan 13, 2011
Jan 13, 2011
150
151
152
153
154
155
156
/* Called by the Java code to start the audio processing on a thread */
void
Android_RunAudioThread()
{
SDL_RunAudio(audioDevice);
}
Jul 27, 2010
Jul 27, 2010
157
/* vi: set ts=4 sw=4 expandtab: */