forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
audio.c
534 lines (448 loc) · 16.3 KB
/
audio.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
/*****************************************************************************
* libvlc_audio.c: New libvlc audio control API
*****************************************************************************
* Copyright (C) 2006 VLC authors and VideoLAN
*
* Authors: Filippo Carone <[email protected]>
* Jean-Paul Saman <jpsaman _at_ m2x _dot_ nl>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <assert.h>
#include <math.h>
#include <vlc/libvlc.h>
#include <vlc/libvlc_renderer_discoverer.h>
#include <vlc/libvlc_picture.h>
#include <vlc/libvlc_media.h>
#include <vlc/libvlc_media_player.h>
#include <vlc_common.h>
#include <vlc_aout.h>
#include <vlc_modules.h>
#include "libvlc_internal.h"
#include "media_player_internal.h"
/*
* Remember to release the returned audio_output_t since it is locked at
* the end of this function.
*/
static audio_output_t *GetAOut( libvlc_media_player_t *mp )
{
assert( mp != NULL );
audio_output_t *p_aout = vlc_player_aout_Hold(mp->player);
if( p_aout == NULL )
libvlc_printerr( "No active audio output" );
return p_aout;
}
/*****************************************
* Get the list of available audio outputs
*****************************************/
libvlc_audio_output_t *
libvlc_audio_output_list_get( libvlc_instance_t *p_instance )
{
size_t count;
module_t **module_list = module_list_get( &count );
libvlc_audio_output_t *list = NULL;
for (size_t i = 0; i < count; i++)
{
module_t *module = module_list[i];
if( !module_provides( module, "audio output" ) )
continue;
libvlc_audio_output_t *item = malloc( sizeof( *item ) );
if( unlikely(item == NULL) )
{
error:
libvlc_printerr( "Not enough memory" );
libvlc_audio_output_list_release( list );
list = NULL;
break;
}
item->psz_name = strdup( module_get_object( module ) );
item->psz_description = strdup( module_GetLongName( module ) );
if( unlikely(item->psz_name == NULL || item->psz_description == NULL) )
{
free( item->psz_name );
free( item->psz_description );
free( item );
goto error;
}
item->p_next = list;
list = item;
}
module_list_free( module_list );
VLC_UNUSED( p_instance );
return list;
}
/********************************************
* Free the list of available audio outputs
***********************************************/
void libvlc_audio_output_list_release( libvlc_audio_output_t *list )
{
while( list != NULL )
{
libvlc_audio_output_t *next = list->p_next;
free( list->psz_name );
free( list->psz_description );
free( list );
list = next;
}
}
/***********************
* Set the audio output.
***********************/
int libvlc_audio_output_set( libvlc_media_player_t *mp, const char *psz_name )
{
char *value;
if( !module_exists( psz_name )
|| asprintf( &value, "%s,none", psz_name ) == -1 )
return -1;
var_SetString( mp, "aout", value );
free( value );
vlc_player_aout_Reset(mp->player);
return 0;
}
libvlc_audio_output_device_t *
libvlc_audio_output_device_enum( libvlc_media_player_t *mp )
{
audio_output_t *aout = GetAOut( mp );
if( aout == NULL )
return NULL;
libvlc_audio_output_device_t *list, **pp = &list;
char **values, **texts;
int n = aout_DevicesList( aout, &values, &texts );
aout_Release(aout);
if( n < 0 )
goto err;
for (int i = 0; i < n; i++)
{
libvlc_audio_output_device_t *item = malloc( sizeof(*item) );
if( unlikely(item == NULL) )
{
free( texts[i] );
free( values[i] );
continue;
}
*pp = item;
pp = &item->p_next;
item->psz_device = values[i];
item->psz_description = texts[i];
}
free( texts );
free( values );
err:
*pp = NULL;
return list;
}
void libvlc_audio_output_device_list_release( libvlc_audio_output_device_t *l )
{
while( l != NULL )
{
libvlc_audio_output_device_t *next = l->p_next;
free( l->psz_description );
free( l->psz_device );
free( l );
l = next;
}
}
/*****************************
* Set device for using
*****************************/
int libvlc_audio_output_device_set( libvlc_media_player_t *mp,
const char *devid )
{
if( devid == NULL )
return -1;
audio_output_t *aout = GetAOut( mp );
if( aout == NULL )
return -1;
int ret = aout_DeviceSet( aout, devid );
aout_Release(aout);
return ret;
}
char *libvlc_audio_output_device_get( libvlc_media_player_t *mp )
{
audio_output_t *aout = GetAOut( mp );
if( aout == NULL )
return NULL;
char *devid = aout_DeviceGet( aout );
aout_Release(aout);
return devid;
}
void libvlc_audio_toggle_mute( libvlc_media_player_t *mp )
{
int mute = libvlc_audio_get_mute( mp );
if( mute != -1 )
libvlc_audio_set_mute( mp, !mute );
}
int libvlc_audio_get_mute( libvlc_media_player_t *mp )
{
int mute = -1;
audio_output_t *aout = GetAOut( mp );
if( aout != NULL )
{
mute = aout_MuteGet( aout );
aout_Release(aout);
}
return mute;
}
void libvlc_audio_set_mute( libvlc_media_player_t *mp, int mute )
{
audio_output_t *aout = GetAOut( mp );
if( aout != NULL )
{
mute = aout_MuteSet( aout, mute );
aout_Release(aout);
}
}
int libvlc_audio_get_volume( libvlc_media_player_t *mp )
{
int volume = -1;
audio_output_t *aout = GetAOut( mp );
if( aout != NULL )
{
float vol = aout_VolumeGet( aout );
aout_Release(aout);
volume = lroundf( vol * 100.f );
}
return volume;
}
int libvlc_audio_set_volume( libvlc_media_player_t *mp, int volume )
{
float vol = volume / 100.f;
if (!isgreaterequal(vol, 0.f))
{
libvlc_printerr( "Volume out of range" );
return -1;
}
int ret = -1;
audio_output_t *aout = GetAOut( mp );
if( aout != NULL )
{
ret = aout_VolumeSet( aout, vol );
aout_Release(aout);
}
return ret;
}
/*****************************************************************************
* libvlc_audio_get_stereomode : Get the current audio stereo-mode
*****************************************************************************/
libvlc_audio_output_stereomode_t libvlc_audio_get_stereomode( libvlc_media_player_t *mp )
{
audio_output_t *p_aout = GetAOut( mp );
if( !p_aout )
return libvlc_AudioStereoMode_Unset;
int val = var_GetInteger( p_aout, "stereo-mode" );
aout_Release(p_aout);
return val;
}
/*****************************************************************************
* libvlc_audio_set_stereomode : Set the current audio stereo-mode
*****************************************************************************/
int libvlc_audio_set_stereomode( libvlc_media_player_t *mp, libvlc_audio_output_stereomode_t mode )
{
static_assert(libvlc_AudioStereoMode_Unset == AOUT_VAR_CHAN_UNSET &&
libvlc_AudioStereoMode_Stereo == AOUT_VAR_CHAN_STEREO &&
libvlc_AudioStereoMode_RStereo == AOUT_VAR_CHAN_RSTEREO &&
libvlc_AudioStereoMode_Left == AOUT_VAR_CHAN_LEFT &&
libvlc_AudioStereoMode_Right == AOUT_VAR_CHAN_RIGHT &&
libvlc_AudioStereoMode_Dolbys == AOUT_VAR_CHAN_DOLBYS &&
libvlc_AudioStereoMode_Mono == AOUT_VAR_CHAN_MONO,
"Mismatch with stereo-mode LibVLC/VLC enums");
audio_output_t *p_aout = GetAOut( mp );
int ret = 0;
if( !p_aout )
return -1;
if( var_SetInteger( p_aout, "stereo-mode", mode ) < 0 )
{
libvlc_printerr( "Audio stereo-mode out of range" );
ret = -1;
}
aout_Release(p_aout);
return ret;
}
/*****************************************************************************
* libvlc_audio_get_mixmode : Get the current audio mix-mode
*****************************************************************************/
libvlc_audio_output_mixmode_t libvlc_audio_get_mixmode( libvlc_media_player_t *mp )
{
audio_output_t *p_aout = GetAOut( mp );
if( !p_aout )
return libvlc_AudioMixMode_Unset;
int val = var_GetInteger( p_aout, "mix-mode" );
aout_Release(p_aout);
return val;
}
/*****************************************************************************
* libvlc_audio_set_mixmode : Set the current audio mix-mode
*****************************************************************************/
int libvlc_audio_set_mixmode( libvlc_media_player_t *mp, libvlc_audio_output_mixmode_t mode )
{
static_assert(libvlc_AudioMixMode_Unset == AOUT_VAR_CHAN_UNSET &&
libvlc_AudioMixMode_Stereo == AOUT_MIX_MODE_STEREO &&
libvlc_AudioMixMode_Binaural == AOUT_MIX_MODE_BINAURAL &&
libvlc_AudioMixMode_4_0 == AOUT_MIX_MODE_4_0 &&
libvlc_AudioMixMode_5_1 == AOUT_MIX_MODE_5_1 &&
libvlc_AudioMixMode_7_1 == AOUT_MIX_MODE_7_1,
"Mismatch with mix-mode LibVLC/VLC enums");
audio_output_t *p_aout = GetAOut( mp );
int ret = 0;
if( !p_aout )
return -1;
if( var_SetInteger( p_aout, "mix-mode", mode ) < 0 )
{
libvlc_printerr( "Audio mix-mode out of range" );
ret = -1;
}
aout_Release(p_aout);
return ret;
}
/*****************************************************************************
* libvlc_audio_get_delay : Get the current audio delay
*****************************************************************************/
int64_t libvlc_audio_get_delay( libvlc_media_player_t *p_mi )
{
vlc_player_t *player = p_mi->player;
vlc_player_Lock(player);
vlc_tick_t delay = vlc_player_GetAudioDelay(player);
vlc_player_Unlock(player);
return US_FROM_VLC_TICK(delay);
}
/*****************************************************************************
* libvlc_audio_set_delay : Set the current audio delay
*****************************************************************************/
int libvlc_audio_set_delay( libvlc_media_player_t *p_mi, int64_t i_delay )
{
vlc_player_t *player = p_mi->player;
vlc_player_Lock(player);
vlc_player_SetAudioDelay(player, VLC_TICK_FROM_US(i_delay),
VLC_PLAYER_WHENCE_ABSOLUTE);
vlc_player_Unlock(player);
/* may not fail anymore, keep int not to break the API */
return 0;
}
/*****************************************************************************
* libvlc_audio_equalizer_get_preset_count : Get the number of equalizer presets
*****************************************************************************/
unsigned libvlc_audio_equalizer_get_preset_count( void )
{
return NB_PRESETS;
}
/*****************************************************************************
* libvlc_audio_equalizer_get_preset_name : Get the name for a preset
*****************************************************************************/
const char *libvlc_audio_equalizer_get_preset_name( unsigned u_index )
{
if ( u_index >= NB_PRESETS )
return NULL;
return preset_list_text[ u_index ];
}
/*****************************************************************************
* libvlc_audio_equalizer_get_band_count : Get the number of equalizer frequency bands
*****************************************************************************/
unsigned libvlc_audio_equalizer_get_band_count( void )
{
return EQZ_BANDS_MAX;
}
/*****************************************************************************
* libvlc_audio_equalizer_get_band_frequency : Get the frequency for a band
*****************************************************************************/
float libvlc_audio_equalizer_get_band_frequency( unsigned u_index )
{
if ( u_index >= EQZ_BANDS_MAX )
return -1.f;
return f_iso_frequency_table_10b[ u_index ];
}
/*****************************************************************************
* libvlc_audio_equalizer_new : Create a new audio equalizer with zeroed values
*****************************************************************************/
libvlc_equalizer_t *libvlc_audio_equalizer_new( void )
{
libvlc_equalizer_t *p_equalizer;
p_equalizer = malloc( sizeof( *p_equalizer ) );
if ( unlikely( p_equalizer == NULL ) )
return NULL;
p_equalizer->f_preamp = 0.f;
for ( unsigned i = 0; i < EQZ_BANDS_MAX; i++ )
p_equalizer->f_amp[ i ] = 0.f;
return p_equalizer;
}
/*****************************************************************************
* libvlc_audio_equalizer_new_from_preset : Create a new audio equalizer based on a preset
*****************************************************************************/
libvlc_equalizer_t *libvlc_audio_equalizer_new_from_preset( unsigned u_index )
{
libvlc_equalizer_t *p_equalizer;
if ( u_index >= NB_PRESETS )
return NULL;
p_equalizer = malloc( sizeof( *p_equalizer ) );
if ( unlikely( p_equalizer == NULL ) )
return NULL;
p_equalizer->f_preamp = eqz_preset_10b[ u_index ].f_preamp;
for ( unsigned i = 0; i < EQZ_BANDS_MAX; i++ )
p_equalizer->f_amp[ i ] = eqz_preset_10b[ u_index ].f_amp[ i ];
return p_equalizer;
}
/*****************************************************************************
* libvlc_audio_equalizer_release : Release a previously created equalizer
*****************************************************************************/
void libvlc_audio_equalizer_release( libvlc_equalizer_t *p_equalizer )
{
free( p_equalizer );
}
/*****************************************************************************
* libvlc_audio_equalizer_set_preamp : Set the preamp value for an equalizer
*****************************************************************************/
int libvlc_audio_equalizer_set_preamp( libvlc_equalizer_t *p_equalizer, float f_preamp )
{
if( isnan(f_preamp) )
return -1;
if( f_preamp < -20.f )
f_preamp = -20.f;
else if( f_preamp > 20.f )
f_preamp = 20.f;
p_equalizer->f_preamp = f_preamp;
return 0;
}
/*****************************************************************************
* libvlc_audio_equalizer_get_preamp : Get the preamp value for an equalizer
*****************************************************************************/
float libvlc_audio_equalizer_get_preamp( libvlc_equalizer_t *p_equalizer )
{
return p_equalizer->f_preamp;
}
/*****************************************************************************
* libvlc_audio_equalizer_set_amp_at_index : Set the amplification value for an equalizer band
*****************************************************************************/
int libvlc_audio_equalizer_set_amp_at_index( libvlc_equalizer_t *p_equalizer, float f_amp, unsigned u_band )
{
if( u_band >= EQZ_BANDS_MAX || isnan(f_amp) )
return -1;
if( f_amp < -20.f )
f_amp = -20.f;
else if( f_amp > 20.f )
f_amp = 20.f;
p_equalizer->f_amp[ u_band ] = f_amp;
return 0;
}
/*****************************************************************************
* libvlc_audio_equalizer_get_amp_at_index : Get the amplification value for an equalizer band
*****************************************************************************/
float libvlc_audio_equalizer_get_amp_at_index( libvlc_equalizer_t *p_equalizer, unsigned u_band )
{
if ( u_band >= EQZ_BANDS_MAX )
return nanf("");
return p_equalizer->f_amp[ u_band ];
}