]> git.sesse.net Git - vlc/blob - modules/audio_output/audiotrack.c
AudioTrack: use the render position from the DSP to compute the delay
[vlc] / modules / audio_output / audiotrack.c
1 /*****************************************************************************
2  * audiotrack.c: Android native AudioTrack audio output module
3  *****************************************************************************
4  * Copyright © 2012 VLC authors and VideoLAN
5  *
6  * Authors: Ming Hu <tewilove@gmail.com>
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation; either version 2.1 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program; if not, write to the Free Software Foundation,
20  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22
23 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
26
27 #include <vlc_common.h>
28 #include <vlc_plugin.h>
29 #include <vlc_aout.h>
30
31 #include <dlfcn.h>
32 #include <assert.h>
33
34 #define SIZE_OF_AUDIOTRACK 256
35
36 /* From AudioSystem.h */
37 #define MUSIC 3
38
39 enum pcm_sub_format {
40     PCM_SUB_16_BIT          = 0x1, // must be 1 for backward compatibility
41     PCM_SUB_8_BIT           = 0x2  // must be 2 for backward compatibility
42 };
43
44 enum audio_format {
45     PCM                 = 0x00000000, // must be 0 for backward compatibility
46     PCM_16_BIT          = (PCM|PCM_SUB_16_BIT),
47     PCM_8_BIT           = (PCM|PCM_SUB_8_BIT)
48 };
49
50 enum audio_channels {
51     CHANNEL_OUT_FRONT_LEFT            = 0x4,
52     CHANNEL_OUT_FRONT_RIGHT           = 0x8,
53     CHANNEL_OUT_FRONT_CENTER          = 0x10,
54     CHANNEL_OUT_LOW_FREQUENCY         = 0x20,
55     CHANNEL_OUT_BACK_LEFT             = 0x40,
56     CHANNEL_OUT_BACK_RIGHT            = 0x80,
57     CHANNEL_OUT_FRONT_LEFT_OF_CENTER  = 0x100,
58     CHANNEL_OUT_FRONT_RIGHT_OF_CENTER = 0x200,
59     CHANNEL_OUT_BACK_CENTER           = 0x400,
60     CHANNEL_OUT_MONO = CHANNEL_OUT_FRONT_LEFT,
61     CHANNEL_OUT_STEREO = (CHANNEL_OUT_FRONT_LEFT | CHANNEL_OUT_FRONT_RIGHT)
62 };
63
64 // _ZN7android11AudioSystem19getOutputFrameCountEPii
65 typedef int (*AudioSystem_getOutputFrameCount)(int *, int);
66 // _ZN7android11AudioSystem16getOutputLatencyEPji
67 typedef int (*AudioSystem_getOutputLatency)(unsigned int *, int);
68 // _ZN7android11AudioSystem21getOutputSamplingRateEPii
69 typedef int (*AudioSystem_getOutputSamplingRate)(int *, int);
70
71 // _ZN7android10AudioTrack16getMinFrameCountEPiij
72 typedef int (*AudioTrack_getMinFrameCount)(int *, int, unsigned int);
73
74 // _ZN7android11AudioSystem17getRenderPositionEPjS1_i
75 typedef int (*AudioTrack_getRenderPosition)(uint32_t *, uint32_t *, int);
76 // _ZN7android10AudioTrackC1EijiiijPFviPvS1_ES1_ii
77 typedef void (*AudioTrack_ctor)(void *, int, unsigned int, int, int, int, unsigned int, void (*)(int, void *, void *), void *, int, int);
78 // _ZN7android10AudioTrackC1EijiiijPFviPvS1_ES1_i
79 typedef void (*AudioTrack_ctor_legacy)(void *, int, unsigned int, int, int, int, unsigned int, void (*)(int, void *, void *), void *, int);
80 // _ZN7android10AudioTrackD1Ev
81 typedef void (*AudioTrack_dtor)(void *);
82 // _ZNK7android10AudioTrack9initCheckEv
83 typedef int (*AudioTrack_initCheck)(void *);
84 // _ZN7android10AudioTrack5startEv
85 typedef int (*AudioTrack_start)(void *);
86 // _ZN7android10AudioTrack4stopEv
87 typedef int (*AudioTrack_stop)(void *);
88 // _ZN7android10AudioTrack5writeEPKvj
89 typedef int (*AudioTrack_write)(void *, void  const*, unsigned int);
90 // _ZN7android10AudioTrack5flushEv
91 typedef int (*AudioTrack_flush)(void *);
92 // _ZN7android10AudioTrack5pauseEv
93 typedef int (*AudioTrack_pause)(void *);
94
95 struct aout_sys_t {
96     float soft_gain;
97     bool soft_mute;
98
99     int rate;
100     uint32_t samples_written;
101     uint32_t initial;
102     int bytes_per_frame;
103
104     void *libmedia;
105     void *AudioTrack;
106
107     AudioSystem_getOutputFrameCount as_getOutputFrameCount;
108     AudioSystem_getOutputLatency as_getOutputLatency;
109     AudioSystem_getOutputSamplingRate as_getOutputSamplingRate;
110
111     AudioTrack_getMinFrameCount at_getMinFrameCount;
112     AudioTrack_ctor at_ctor;
113     AudioTrack_ctor_legacy at_ctor_legacy;
114     AudioTrack_dtor at_dtor;
115     AudioTrack_initCheck at_initCheck;
116     AudioTrack_start at_start;
117     AudioTrack_stop at_stop;
118     AudioTrack_write at_write;
119     AudioTrack_flush at_flush;
120     AudioTrack_pause at_pause;
121     AudioTrack_getRenderPosition at_getRenderPosition;
122 };
123
124 /* Soft volume helper */
125 #include "audio_output/volume.h"
126
127 static void *InitLibrary(struct aout_sys_t *p_sys);
128
129 static int  Open(vlc_object_t *);
130 static void Close(vlc_object_t *);
131 static void Play(audio_output_t*, block_t*);
132 static void Pause (audio_output_t *, bool, mtime_t);
133 static void Flush (audio_output_t *, bool);
134
135 vlc_module_begin ()
136     set_shortname("AudioTrack")
137     set_description(N_("Android AudioTrack audio output"))
138     set_capability("audio output", 225)
139     set_category(CAT_AUDIO)
140     set_subcategory(SUBCAT_AUDIO_AOUT)
141     add_sw_gain()
142     add_shortcut("android")
143     set_callbacks(Open, Close)
144 vlc_module_end ()
145
146 static void *InitLibrary(struct aout_sys_t *p_sys)
147 {
148     /* DL Open libmedia */
149     void *p_library;
150     p_library = dlopen("libmedia.so", RTLD_NOW|RTLD_LOCAL);
151     if (!p_library)
152         return NULL;
153
154     /* Register symbols */
155     p_sys->as_getOutputFrameCount = (AudioSystem_getOutputFrameCount)(dlsym(p_library, "_ZN7android11AudioSystem19getOutputFrameCountEPii"));
156     p_sys->as_getOutputLatency = (AudioSystem_getOutputLatency)(dlsym(p_library, "_ZN7android11AudioSystem16getOutputLatencyEPji"));
157     if(p_sys->as_getOutputLatency == NULL) {
158         /* 4.1 Jellybean prototype */
159         p_sys->as_getOutputLatency = (AudioSystem_getOutputLatency)(dlsym(p_library, "_ZN7android11AudioSystem16getOutputLatencyEPj19audio_stream_type_t"));
160     }
161     p_sys->as_getOutputSamplingRate = (AudioSystem_getOutputSamplingRate)(dlsym(p_library, "_ZN7android11AudioSystem21getOutputSamplingRateEPii"));
162     p_sys->at_getMinFrameCount = (AudioTrack_getMinFrameCount)(dlsym(p_library, "_ZN7android10AudioTrack16getMinFrameCountEPiij"));
163     if(p_sys->at_getMinFrameCount == NULL) {
164         /* 4.1 Jellybean prototype */
165         p_sys->at_getMinFrameCount = (AudioTrack_getMinFrameCount)(dlsym(p_library, "_ZN7android10AudioTrack16getMinFrameCountEPi19audio_stream_type_tj"));
166     }
167     p_sys->at_ctor = (AudioTrack_ctor)(dlsym(p_library, "_ZN7android10AudioTrackC1EijiiijPFviPvS1_ES1_ii"));
168     p_sys->at_ctor_legacy = (AudioTrack_ctor_legacy)(dlsym(p_library, "_ZN7android10AudioTrackC1EijiiijPFviPvS1_ES1_i"));
169     p_sys->at_dtor = (AudioTrack_dtor)(dlsym(p_library, "_ZN7android10AudioTrackD1Ev"));
170     p_sys->at_initCheck = (AudioTrack_initCheck)(dlsym(p_library, "_ZNK7android10AudioTrack9initCheckEv"));
171     p_sys->at_start = (AudioTrack_start)(dlsym(p_library, "_ZN7android10AudioTrack5startEv"));
172     p_sys->at_stop = (AudioTrack_stop)(dlsym(p_library, "_ZN7android10AudioTrack4stopEv"));
173     p_sys->at_write = (AudioTrack_write)(dlsym(p_library, "_ZN7android10AudioTrack5writeEPKvj"));
174     p_sys->at_flush = (AudioTrack_flush)(dlsym(p_library, "_ZN7android10AudioTrack5flushEv"));
175     p_sys->at_pause = (AudioTrack_pause)(dlsym(p_library, "_ZN7android10AudioTrack5pauseEv"));
176
177     /* this symbol can have different names depending on the mangling */
178     p_sys->at_getRenderPosition = (AudioTrack_getRenderPosition)(dlsym(p_library, "_ZN7android11AudioSystem17getRenderPositionEPjS1_i"));
179     if (!p_sys->at_getRenderPosition)
180         p_sys->at_getRenderPosition = (AudioTrack_getRenderPosition)(dlsym(p_library, "_ZN7android11AudioSystem17getRenderPositionEPjS1_19audio_stream_type_t"));
181
182     /* We need the first 3 or the last 1 */
183     if (!((p_sys->as_getOutputFrameCount && p_sys->as_getOutputLatency && p_sys->as_getOutputSamplingRate)
184         || p_sys->at_getMinFrameCount)) {
185         dlclose(p_library);
186         return NULL;
187     }
188
189     // We need all the other Symbols
190     if (!((p_sys->at_ctor || p_sys->at_ctor_legacy) && p_sys->at_dtor && p_sys->at_initCheck &&
191            p_sys->at_start && p_sys->at_stop && p_sys->at_write && p_sys->at_flush)) {
192         dlclose(p_library);
193         return NULL;
194     }
195     return p_library;
196 }
197
198 static int TimeGet(audio_output_t *p_aout, mtime_t *restrict delay)
199 {
200     aout_sys_t *p_sys = p_aout->sys;
201     uint32_t hal, dsp;
202
203     if (!p_sys->at_getRenderPosition)
204         return -1;
205
206     if (p_sys->at_getRenderPosition(&hal, &dsp, MUSIC))
207         return -1;
208
209     if (p_sys->samples_written == 0) {
210         p_sys->initial = dsp;
211         return -1;
212     }
213
214     dsp -= p_sys->initial;
215     if (dsp == 0)
216         return -1;
217
218     if (delay)
219         *delay = ((mtime_t)p_sys->samples_written - dsp) * CLOCK_FREQ / p_sys->rate;
220
221     return 0;
222 }
223
224 static int Start(audio_output_t *aout, audio_sample_format_t *restrict fmt)
225 {
226     struct aout_sys_t *p_sys = aout->sys;
227
228     int status, size;
229     int afSampleRate, afFrameCount, afLatency, minBufCount, minFrameCount;
230     int stream_type, channel, rate, format;
231
232     /* 4000 <= frequency <= 48000 */
233     rate = fmt->i_rate;
234     if (rate < 4000)
235         rate = 4000;
236     if (rate > 48000)
237         rate = 48000;
238
239     stream_type = MUSIC;
240
241     /* We can only accept U8 and S16N */
242     if (fmt->i_format != VLC_CODEC_U8 && fmt->i_format != VLC_CODEC_S16N)
243         fmt->i_format = VLC_CODEC_S16N;
244     format = (fmt->i_format == VLC_CODEC_S16N) ? PCM_16_BIT : PCM_8_BIT;
245
246     /* TODO: android supports more channels */
247     fmt->i_original_channels = fmt->i_physical_channels;
248     switch(aout_FormatNbChannels(fmt))
249     {
250     case 1:
251         channel = CHANNEL_OUT_MONO;
252         fmt->i_physical_channels = AOUT_CHAN_CENTER;
253         break;
254     case 2:
255     default:
256         channel = CHANNEL_OUT_STEREO;
257         fmt->i_physical_channels = AOUT_CHANS_STEREO;
258         break;
259     }
260
261     /* Get the minimum buffer value */
262     if (!p_sys->at_getMinFrameCount) {
263         status = p_sys->as_getOutputSamplingRate(&afSampleRate, stream_type);
264         status ^= p_sys->as_getOutputFrameCount(&afFrameCount, stream_type);
265         status ^= p_sys->as_getOutputLatency((uint32_t*)(&afLatency), stream_type);
266         if (status != 0) {
267             msg_Err(aout, "Could not query the AudioStream parameters");
268             return VLC_EGENERIC;
269         }
270         minBufCount = afLatency / ((1000 * afFrameCount) / afSampleRate);
271         if (minBufCount < 2)
272             minBufCount = 2;
273         minFrameCount = (afFrameCount * rate * minBufCount) / afSampleRate;
274     }
275     else {
276         status = p_sys->at_getMinFrameCount(&minFrameCount, stream_type, rate);
277         if (status != 0) {
278             msg_Err(aout, "Could not query the AudioTrack parameters");
279             return VLC_EGENERIC;
280         }
281     }
282
283     size = minFrameCount * (channel == CHANNEL_OUT_STEREO ? 2 : 1) * 4;
284
285     /* Sizeof(AudioTrack) == 0x58 (not sure) on 2.2.1, this should be enough */
286     p_sys->AudioTrack = malloc(SIZE_OF_AUDIOTRACK);
287     if (!p_sys->AudioTrack)
288         return VLC_ENOMEM;
289
290     *((uint32_t *) ((uint32_t)p_sys->AudioTrack + SIZE_OF_AUDIOTRACK - 4)) = 0xbaadbaad;
291     // Higher than android 2.2
292     if (p_sys->at_ctor)
293         p_sys->at_ctor(p_sys->AudioTrack, stream_type, rate, format, channel, size, 0, NULL, NULL, 0, 0);
294     // Higher than android 1.6
295     else if (p_sys->at_ctor_legacy)
296         p_sys->at_ctor_legacy(p_sys->AudioTrack, stream_type, rate, format, channel, size, 0, NULL, NULL, 0);
297
298     assert( (*((uint32_t *) ((uint32_t)p_sys->AudioTrack + SIZE_OF_AUDIOTRACK - 4)) == 0xbaadbaad) );
299
300     /* And Init */
301     status = p_sys->at_initCheck(p_sys->AudioTrack);
302
303     /* android 1.6 uses channel count instead of stream_type */
304     if (status != 0) {
305         channel = (channel == CHANNEL_OUT_STEREO) ? 2 : 1;
306         p_sys->at_ctor_legacy(p_sys->AudioTrack, stream_type, rate, format, channel, size, 0, NULL, NULL, 0);
307         status = p_sys->at_initCheck(p_sys->AudioTrack);
308     }
309     if (status != 0) {
310         msg_Err(aout, "Cannot create AudioTrack!");
311         free(p_sys->AudioTrack);
312         return VLC_EGENERIC;
313     }
314
315     aout_SoftVolumeStart(aout);
316
317     aout->sys = p_sys;
318     aout->play = Play;
319     aout->pause = Pause;
320     aout->flush = Flush;
321     aout->time_get = TimeGet;
322
323     p_sys->rate = rate;
324     p_sys->samples_written = 0;
325     p_sys->bytes_per_frame = aout_FormatNbChannels(fmt) * (format == PCM_16_BIT) ? 2 : 1;
326
327     p_sys->at_start(p_sys->AudioTrack);
328     TimeGet(aout, NULL); /* Gets the initial value of DAC samples counter */
329
330     fmt->i_rate = rate;
331
332     return VLC_SUCCESS;
333 }
334
335 static void Stop(audio_output_t* p_aout)
336 {
337     aout_sys_t *p_sys = p_aout->sys;
338
339     p_sys->at_stop(p_sys->AudioTrack);
340     p_sys->at_flush(p_sys->AudioTrack);
341     p_sys->at_dtor(p_sys->AudioTrack);
342     free(p_sys->AudioTrack);
343 }
344
345 static void Play(audio_output_t* p_aout, block_t* p_buffer)
346 {
347     aout_sys_t *p_sys = p_aout->sys;
348
349     while (p_buffer->i_buffer) {
350         int ret = p_sys->at_write(p_sys->AudioTrack, p_buffer->p_buffer, p_buffer->i_buffer);
351         if (ret < 0) {
352             msg_Err(p_aout, "Write failed (error %d)", ret);
353             break;
354         }
355
356         p_sys->samples_written += ret / p_sys->bytes_per_frame;
357         p_buffer->p_buffer += ret;
358         p_buffer->i_buffer -= ret;
359     }
360
361     block_Release( p_buffer );
362 }
363
364 static void Pause(audio_output_t *p_aout, bool pause, mtime_t date)
365 {
366     VLC_UNUSED(date);
367
368     aout_sys_t *p_sys = p_aout->sys;
369
370     if (pause) {
371         p_sys->at_pause(p_sys->AudioTrack);
372     } else {
373         p_sys->at_start(p_sys->AudioTrack);
374     }
375 }
376
377 static void Flush (audio_output_t *p_aout, bool wait)
378 {
379     aout_sys_t *p_sys = p_aout->sys;
380     if (wait) {
381         mtime_t delay;
382         if (!TimeGet(p_aout, &delay))
383             msleep(delay);
384     } else {
385         p_sys->at_stop(p_sys->AudioTrack);
386         p_sys->at_flush(p_sys->AudioTrack);
387         p_sys->samples_written = 0;
388         p_sys->at_start(p_sys->AudioTrack);
389     }
390 }
391
392 static int Open(vlc_object_t *obj)
393 {
394     audio_output_t *aout = (audio_output_t *)obj;
395     aout_sys_t *sys = malloc(sizeof (*sys));
396
397     if (unlikely(sys == NULL))
398         return VLC_ENOMEM;
399
400     sys->libmedia = InitLibrary(sys);
401     if (sys->libmedia == NULL) {
402         msg_Err(aout, "Could not initialize libmedia.so!");
403         free(sys);
404         return VLC_EGENERIC;
405     }
406
407     aout->sys = sys;
408     aout->start = Start;
409     aout->stop = Stop;
410     aout_SoftVolumeInit(aout);
411     return VLC_SUCCESS;
412 }
413
414 static void Close(vlc_object_t *obj)
415 {
416     audio_output_t *aout = (audio_output_t *)obj;
417     aout_sys_t *sys = aout->sys;
418
419     dlclose(sys->libmedia);
420     free(sys);
421 }