-
Notifications
You must be signed in to change notification settings - Fork 38
/
alsa.c
915 lines (716 loc) · 19.2 KB
/
alsa.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
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
/*
* MOC - music on console
* Copyright (C) 2004 Damian Pietras <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
*/
/* Based on aplay copyright (c) by Jaroslav Kysela <[email protected]> */
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdlib.h>
#include <inttypes.h>
#include <alsa/asoundlib.h>
#include <assert.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#define DEBUG
#define STRERROR_FN alsa_strerror
#include "common.h"
#include "server.h"
#include "audio.h"
#include "options.h"
#include "log.h"
#define BUFFER_MAX_USEC 300000
/* Check that ALSA's and MOC's byte/sample/frame conversions agree. */
#ifndef NDEBUG
# define ALSA_CHECK(fn,val) \
do { \
long v = val; \
ssize_t ssz = snd_pcm_##fn (handle, 1); \
if (ssz < 0) \
debug ("CHECK: snd_pcm_%s() failed: %s", #fn, alsa_strerror (ssz)); \
else if (v != ssz) \
debug ("CHECK: snd_pcm_%s() = %zd (vs %ld)", #fn, ssz, v); \
} while (0)
#else
# define ALSA_CHECK(...) do {} while (0)
#endif
static snd_pcm_t *handle = NULL;
static struct
{
unsigned int channels;
unsigned int rate;
snd_pcm_format_t format;
} params = { 0, 0, SND_PCM_FORMAT_UNKNOWN };
static snd_pcm_uframes_t buffer_frames;
static snd_pcm_uframes_t chunk_frames;
static int chunk_bytes = -1;
static char alsa_buf[512 * 1024];
static int alsa_buf_fill = 0;
static int bytes_per_frame;
static int bytes_per_sample;
static snd_mixer_t *mixer_handle = NULL;
static snd_mixer_elem_t *mixer_elem1 = NULL;
static snd_mixer_elem_t *mixer_elem2 = NULL;
static snd_mixer_elem_t *mixer_elem_curr = NULL;
/* Percentage volume setting for first and second mixer. */
static int volume1 = -1;
static int volume2 = -1;
/* ALSA-provided error code to description function wrapper. */
static inline char *alsa_strerror (int errnum)
{
char *result;
if (errnum < 0)
errnum = -errnum;
if (errnum < SND_ERROR_BEGIN)
result = xstrerror (errnum);
else
result = xstrdup (snd_strerror (errnum));
return result;
}
/* Map ALSA's mask to MOC's format (and visa versa). */
static const struct {
snd_pcm_format_t mask;
long format;
} format_masks[] = {
{SND_PCM_FORMAT_S8, SFMT_S8},
{SND_PCM_FORMAT_U8, SFMT_U8},
{SND_PCM_FORMAT_S16, SFMT_S16},
{SND_PCM_FORMAT_U16, SFMT_U16},
{SND_PCM_FORMAT_S32, SFMT_S32},
{SND_PCM_FORMAT_U32, SFMT_U32}
};
/* Given an ALSA mask, return a MOC format or zero if unknown. */
static inline long mask_to_format (const snd_pcm_format_mask_t *mask)
{
long result = 0;
for (size_t ix = 0; ix < ARRAY_SIZE(format_masks); ix += 1) {
if (snd_pcm_format_mask_test (mask, format_masks[ix].mask))
result |= format_masks[ix].format;
}
#if 0
if (snd_pcm_format_mask_test (mask, SND_PCM_FORMAT_S24))
result |= SFMT_S32; /* conversion needed */
#endif
return result;
}
/* Given a MOC format, return an ALSA mask.
* Return SND_PCM_FORMAT_UNKNOWN if unknown. */
static inline snd_pcm_format_t format_to_mask (long format)
{
snd_pcm_format_t result = SND_PCM_FORMAT_UNKNOWN;
for (size_t ix = 0; ix < ARRAY_SIZE(format_masks); ix += 1) {
if (format_masks[ix].format == format) {
result = format_masks[ix].mask;
break;
}
}
return result;
}
#ifndef NDEBUG
static void alsa_log_cb (const char *unused1 ATTR_UNUSED,
int unused2 ATTR_UNUSED,
const char *unused3 ATTR_UNUSED,
int unused4 ATTR_UNUSED, const char *fmt, ...)
{
char *msg;
va_list va;
assert (fmt);
va_start (va, fmt);
msg = format_msg_va (fmt, va);
va_end (va);
logit ("ALSA said: %s", msg);
free (msg);
}
#endif
static snd_pcm_hw_params_t *alsa_open_device (const char *device)
{
int rc;
snd_pcm_hw_params_t *result;
assert (!handle);
rc = snd_pcm_open (&handle, device, SND_PCM_STREAM_PLAYBACK,
SND_PCM_NONBLOCK);
if (rc < 0) {
error_errno ("Can't open audio", rc);
goto err1;
}
rc = snd_pcm_hw_params_malloc (&result);
if (rc < 0) {
error_errno ("Can't allocate hardware parameters structure", rc);
goto err2;
}
rc = snd_pcm_hw_params_any (handle, result);
if (rc < 0) {
error_errno ("Can't initialize hardware parameters structure", rc);
goto err3;
}
if (0) {
err3:
snd_pcm_hw_params_free (result);
err2:
snd_pcm_close (handle);
err1:
result = NULL;
handle = NULL;
}
return result;
}
/* Fill caps with the device capabilities. Return 0 on error. */
static int fill_capabilities (struct output_driver_caps *caps)
{
int result = 0;
snd_pcm_hw_params_t *hw_params;
assert (!handle);
hw_params = alsa_open_device (options_get_str ("ALSADevice"));
if (!hw_params)
return 0;
do {
int rc;
unsigned int val;
snd_pcm_format_mask_t *format_mask;
rc = snd_pcm_hw_params_get_channels_min (hw_params, &val);
if (rc < 0) {
error_errno ("Can't get the minimum number of channels", rc);
break;
}
caps->min_channels = val;
rc = snd_pcm_hw_params_get_channels_max (hw_params, &val);
if (rc < 0) {
error_errno ("Can't get the maximum number of channels", rc);
break;
}
caps->max_channels = val;
rc = snd_pcm_format_mask_malloc (&format_mask);
if (rc < 0) {
error_errno ("Can't allocate format mask", rc);
break;
}
snd_pcm_hw_params_get_format_mask (hw_params, format_mask);
caps->formats = mask_to_format (format_mask) | SFMT_NE;
snd_pcm_format_mask_free (format_mask);
result = 1;
} while (0);
snd_pcm_hw_params_free (hw_params);
snd_pcm_close (handle);
handle = NULL;
return result;
}
static void handle_mixer_events (snd_mixer_t *mixer_handle)
{
struct pollfd *fds = NULL;
assert (mixer_handle);
do {
int rc, count;
count = snd_mixer_poll_descriptors_count (mixer_handle);
if (count < 0) {
log_errno ("snd_mixer_poll_descriptors_count() failed", count);
break;
}
fds = xcalloc (count, sizeof (struct pollfd));
rc = snd_mixer_poll_descriptors (mixer_handle, fds, count);
if (rc < 0) {
log_errno ("snd_mixer_poll_descriptors() failed", rc);
break;
}
rc = poll (fds, count, 0);
if (rc < 0) {
error_errno ("poll() failed", errno);
break;
}
if (rc == 0)
break;
debug ("Mixer event");
rc = snd_mixer_handle_events (mixer_handle);
if (rc < 0)
log_errno ("snd_mixer_handle_events() failed", rc);
} while (0);
free (fds);
}
static int alsa_read_mixer_raw (snd_mixer_elem_t *elem)
{
int rc, nchannels = 0, volume = 0;
bool joined;
snd_mixer_selem_channel_id_t chan_id;
if (!mixer_handle)
return -1;
assert (elem);
handle_mixer_events (mixer_handle);
joined = snd_mixer_selem_has_playback_volume_joined (elem);
for (chan_id = 0; chan_id < SND_MIXER_SCHN_LAST; chan_id += 1) {
if (snd_mixer_selem_has_playback_channel (elem, chan_id)) {
long vol;
nchannels += 1;
rc = snd_mixer_selem_get_playback_volume (elem, chan_id, &vol);
if (rc < 0) {
error_errno ("Can't read mixer", rc);
return -1;
}
assert (RANGE(0, vol, 100));
#if 0
{
static int prev_vol[SND_MIXER_SCHN_LAST] = {0};
if (vol != prev_vol[chan_id]) {
prev_vol[chan_id] = vol;
debug ("Vol %d: %ld", chan_id, vol);
}
}
#endif
volume += vol;
}
if (joined)
break;
}
if (nchannels == 0) {
logit ("Mixer has no channels");
return -1;
}
volume /= nchannels;
return volume;
}
static snd_mixer_elem_t *alsa_init_mixer_channel (const char *name)
{
snd_mixer_selem_id_t *sid;
snd_mixer_elem_t *result = NULL;
assert (mixer_handle);
snd_mixer_selem_id_malloc (&sid);
snd_mixer_selem_id_set_index (sid, 0);
snd_mixer_selem_id_set_name (sid, name);
do {
snd_mixer_elem_t *elem = NULL;
elem = snd_mixer_find_selem (mixer_handle, sid);
if (!elem) {
error ("Can't find mixer %s", name);
break;
}
if (!snd_mixer_selem_has_playback_volume (elem)) {
error ("Mixer device has no playback volume (%s).", name);
break;
}
if (snd_mixer_selem_set_playback_volume_range (elem, 0, 100) < 0) {
error ("Cannot set playback volume range (%s).", name);
break;
}
logit ("Opened mixer (%s)", name);
result = elem;
} while (0);
snd_mixer_selem_id_free (sid);
return result;
}
static void alsa_close_mixer ()
{
if (mixer_handle) {
int rc;
rc = snd_mixer_close (mixer_handle);
if (rc < 0)
log_errno ("Can't close mixer", rc);
mixer_handle = NULL;
}
}
static void alsa_open_mixer (const char *device)
{
int rc;
assert (!mixer_handle);
rc = snd_mixer_open (&mixer_handle, 0);
if (rc < 0) {
error_errno ("Can't open ALSA mixer", rc);
goto err;
}
rc = snd_mixer_attach (mixer_handle, device);
if (rc < 0) {
error_errno ("Can't attach mixer", rc);
goto err;
}
rc = snd_mixer_selem_register (mixer_handle, NULL, NULL);
if (rc < 0) {
error_errno ("Can't register mixer", rc);
goto err;
}
rc = snd_mixer_load (mixer_handle);
if (rc < 0) {
error_errno ("Can't load mixer", rc);
goto err;
}
if (0) {
err:
alsa_close_mixer ();
}
}
static void alsa_set_current_mixer ()
{
int vol;
if (mixer_elem1 && (vol = alsa_read_mixer_raw (mixer_elem1)) != -1) {
assert (RANGE(0, vol, 100));
volume1 = vol;
}
else {
mixer_elem1 = NULL;
mixer_elem_curr = mixer_elem2;
}
if (mixer_elem2 && (vol = alsa_read_mixer_raw (mixer_elem2)) != -1) {
assert (RANGE(0, vol, 100));
volume2 = vol;
}
else {
mixer_elem2 = NULL;
mixer_elem_curr = mixer_elem1;
}
}
static void alsa_shutdown ()
{
alsa_close_mixer ();
#ifndef NDEBUG
snd_lib_error_set_handler (NULL);
#endif
}
static int alsa_init (struct output_driver_caps *caps)
{
int result = 0;
const char *device;
assert (!mixer_handle);
device = options_get_str ("ALSADevice");
logit ("Initialising ALSA device: %s", device);
#ifndef NDEBUG
snd_lib_error_set_handler (alsa_log_cb);
#endif
alsa_open_mixer (device);
if (mixer_handle) {
mixer_elem1 = alsa_init_mixer_channel (options_get_str ("ALSAMixer1"));
mixer_elem2 = alsa_init_mixer_channel (options_get_str ("ALSAMixer2"));
}
mixer_elem_curr = mixer_elem1 ? mixer_elem1 : mixer_elem2;
if (mixer_elem_curr)
alsa_set_current_mixer ();
if (!mixer_elem_curr)
goto err;
result = fill_capabilities (caps);
if (result == 0)
goto err;
if (sizeof (long) < 8 && options_was_defaulted ("ALSAStutterDefeat")) {
fprintf (stderr,
"\n"
"Warning: Your system may be vulnerable to stuttering audio.\n"
" You should read the example configuration file comments\n"
" for the 'ALSAStutterDefeat' option and set it accordingly.\n"
" Setting the option will remove this warning.\n"
"\n");
xsleep (5, 1);
}
if (0) {
err:
alsa_shutdown ();
}
return result;
}
static int alsa_open (struct sound_params *sound_params)
{
int rc, result = 0;
unsigned int period_time, buffer_time;
char fmt_name[128];
const char *device;
snd_pcm_hw_params_t *hw_params;
assert (!handle);
params.format = format_to_mask (sound_params->fmt & SFMT_MASK_FORMAT);
if (params.format == SND_PCM_FORMAT_UNKNOWN) {
error ("Unknown sample format: %s",
sfmt_str (sound_params->fmt, fmt_name, sizeof (fmt_name)));
return 0;
}
device = options_get_str ("ALSADevice");
logit ("Opening ALSA device: %s", device);
hw_params = alsa_open_device (device);
if (!hw_params)
return 0;
rc = snd_pcm_hw_params_set_access (handle, hw_params,
SND_PCM_ACCESS_RW_INTERLEAVED);
if (rc < 0) {
error_errno ("Can't set ALSA access type", rc);
goto err;
}
rc = snd_pcm_hw_params_set_format (handle, hw_params, params.format);
if (rc < 0) {
error_errno ("Can't set sample format", rc);
goto err;
}
bytes_per_sample = sfmt_Bps (sound_params->fmt);
logit ("Set sample width: %d bytes", bytes_per_sample);
if (options_get_bool ("ALSAStutterDefeat")) {
rc = snd_pcm_hw_params_set_rate_resample (handle, hw_params, 0);
if (rc == 0)
logit ("ALSA resampling disabled");
else
log_errno ("Unable to disable ALSA resampling", rc);
}
params.rate = sound_params->rate;
rc = snd_pcm_hw_params_set_rate_near (handle, hw_params, ¶ms.rate, 0);
if (rc < 0) {
error_errno ("Can't set sample rate", rc);
goto err;
}
logit ("Set rate: %uHz", params.rate);
rc = snd_pcm_hw_params_set_channels (handle, hw_params,
sound_params->channels);
if (rc < 0) {
error_errno ("Can't set number of channels", rc);
goto err;
}
logit ("Set channels: %d", sound_params->channels);
rc = snd_pcm_hw_params_get_buffer_time_max (hw_params, &buffer_time, 0);
if (rc < 0) {
error_errno ("Can't get maximum buffer time", rc);
goto err;
}
buffer_time = MIN(buffer_time, BUFFER_MAX_USEC);
period_time = buffer_time / 4;
rc = snd_pcm_hw_params_set_period_time_near (handle, hw_params,
&period_time, 0);
if (rc < 0) {
error_errno ("Can't set period time", rc);
goto err;
}
rc = snd_pcm_hw_params_set_buffer_time_near (handle, hw_params,
&buffer_time, 0);
if (rc < 0) {
error_errno ("Can't set buffer time", rc);
goto err;
}
rc = snd_pcm_hw_params (handle, hw_params);
if (rc < 0) {
error_errno ("Can't set audio parameters", rc);
goto err;
}
snd_pcm_hw_params_get_period_size (hw_params, &chunk_frames, 0);
debug ("Chunk size: %lu frames", chunk_frames);
snd_pcm_hw_params_get_buffer_size (hw_params, &buffer_frames);
debug ("Buffer size: %lu frames", buffer_frames);
debug ("Buffer time: %"PRIu64"us",
(uint64_t) buffer_frames * UINT64_C(1000000) / params.rate);
bytes_per_frame = sound_params->channels * bytes_per_sample;
debug ("Frame size: %d bytes", bytes_per_frame);
chunk_bytes = chunk_frames * bytes_per_frame;
if (chunk_frames == buffer_frames) {
error ("Can't use period equal to buffer size (%lu == %lu)",
chunk_frames, buffer_frames);
goto err;
}
rc = snd_pcm_prepare (handle);
if (rc < 0) {
error_errno ("Can't prepare audio interface for use", rc);
goto err;
}
ALSA_CHECK (samples_to_bytes, bytes_per_sample);
ALSA_CHECK (frames_to_bytes, bytes_per_frame);
logit ("ALSA device opened");
params.channels = sound_params->channels;
alsa_buf_fill = 0;
result = 1;
err:
snd_pcm_hw_params_free (hw_params);
return result;
}
/* Play from alsa_buf as many chunks as possible. Move the remaining data
* to the beginning of the buffer. Return the number of bytes written
* or -1 on error. */
static int play_buf_chunks ()
{
int written = 0;
bool zero_logged = false;
while (alsa_buf_fill >= chunk_bytes) {
int rc;
rc = snd_pcm_writei (handle, alsa_buf + written, chunk_frames);
if (rc == 0) {
if (!zero_logged) {
debug ("Played 0 bytes");
zero_logged = true;
}
continue;
}
zero_logged = false;
if (rc > 0) {
int written_bytes = rc * bytes_per_frame;
written += written_bytes;
alsa_buf_fill -= written_bytes;
debug ("Played %d bytes", written_bytes);
continue;
}
rc = snd_pcm_recover (handle, rc, 0);
switch (rc) {
case 0:
break;
case -EAGAIN:
if (snd_pcm_wait (handle, 500) < 0)
logit ("snd_pcm_wait() failed");
break;
default:
error_errno ("Can't play", rc);
return -1;
}
}
debug ("%d bytes remain in alsa_buf", alsa_buf_fill);
memmove (alsa_buf, alsa_buf + written, alsa_buf_fill);
return written;
}
static void alsa_close ()
{
snd_pcm_sframes_t delay;
assert (handle != NULL);
/* play what remained in the buffer */
if (alsa_buf_fill > 0) {
unsigned int samples_required;
assert (alsa_buf_fill < chunk_bytes);
samples_required = (chunk_bytes - alsa_buf_fill) / bytes_per_sample;
snd_pcm_format_set_silence (params.format, alsa_buf + alsa_buf_fill,
samples_required);
alsa_buf_fill = chunk_bytes;
play_buf_chunks ();
}
/* Wait for ALSA buffers to empty.
* Do not be tempted to use snd_pcm_nonblock() and snd_pcm_drain()
* here; there are two bugs in ALSA which make it a bad idea (see
* the SVN commit log for r2550). Instead we sleep for the duration
* of the still unplayed samples. */
if (snd_pcm_delay (handle, &delay) == 0 && delay > 0)
xsleep (delay, params.rate);
snd_pcm_close (handle);
logit ("ALSA device closed");
params.format = 0;
params.rate = 0;
params.channels = 0;
buffer_frames = 0;
chunk_frames = 0;
chunk_bytes = -1;
handle = NULL;
}
static int alsa_play (const char *buff, const size_t size)
{
int to_write = size;
int buf_pos = 0;
assert (chunk_bytes > 0);
debug ("Got %zu bytes to play", size);
while (to_write) {
int to_copy;
to_copy = MIN(to_write, ssizeof(alsa_buf) - alsa_buf_fill);
memcpy (alsa_buf + alsa_buf_fill, buff + buf_pos, to_copy);
to_write -= to_copy;
buf_pos += to_copy;
alsa_buf_fill += to_copy;
debug ("Copied %d bytes to alsa_buf (now filled with %d bytes)",
to_copy, alsa_buf_fill);
if (play_buf_chunks() < 0)
return -1;
}
debug ("Played everything");
return size;
}
static int alsa_read_mixer ()
{
int actual_vol, *vol;
actual_vol = alsa_read_mixer_raw (mixer_elem_curr);
assert (RANGE(0, actual_vol, 100));
if (mixer_elem_curr == mixer_elem1)
vol = &volume1;
else
vol = &volume2;
if (*vol != actual_vol) {
*vol = actual_vol;
logit ("Mixer volume has changed since we last read it.");
}
return actual_vol;
}
static void alsa_set_mixer (int vol)
{
int rc;
assert (RANGE(0, vol, 100));
if (!mixer_handle)
return;
if (mixer_elem_curr == mixer_elem1)
volume1 = vol;
else
volume2 = vol;
debug ("Setting vol to %d", vol);
rc = snd_mixer_selem_set_playback_volume_all (mixer_elem_curr, vol);
if (rc < 0)
error_errno ("Can't set mixer", rc);
}
static int alsa_get_buff_fill ()
{
int result = 0;
do {
int rc;
snd_pcm_sframes_t delay;
if (!handle)
break;
rc = snd_pcm_delay (handle, &delay);
if (rc < 0) {
log_errno ("snd_pcm_delay() failed", rc);
break;
}
/* delay can be negative if an underrun occurs */
result = MAX(delay, 0) * bytes_per_frame;
} while (0);
return result;
}
static int alsa_reset ()
{
int result = 0;
do {
int rc;
if (!handle) {
logit ("alsa_reset() when the device is not opened.");
break;
}
rc = snd_pcm_drop (handle);
if (rc < 0) {
error_errno ("Can't reset the device", rc);
break;
}
rc = snd_pcm_prepare (handle);
if (rc < 0) {
error_errno ("Can't prepare after reset", rc);
break;
}
alsa_buf_fill = 0;
result = 1;
} while (0);
return result;
}
static int alsa_get_rate ()
{
return params.rate;
}
static void alsa_toggle_mixer_channel ()
{
if (mixer_elem_curr == mixer_elem1 && mixer_elem2)
mixer_elem_curr = mixer_elem2;
else if (mixer_elem1)
mixer_elem_curr = mixer_elem1;
}
static char *alsa_get_mixer_channel_name ()
{
char *result;
if (mixer_elem_curr == mixer_elem1)
result = xstrdup (options_get_str ("ALSAMixer1"));
else
result = xstrdup (options_get_str ("ALSAMixer2"));
return result;
}
void alsa_funcs (struct hw_funcs *funcs)
{
funcs->init = alsa_init;
funcs->shutdown = alsa_shutdown;
funcs->open = alsa_open;
funcs->close = alsa_close;
funcs->play = alsa_play;
funcs->read_mixer = alsa_read_mixer;
funcs->set_mixer = alsa_set_mixer;
funcs->get_buff_fill = alsa_get_buff_fill;
funcs->reset = alsa_reset;
funcs->get_rate = alsa_get_rate;
funcs->toggle_mixer_channel = alsa_toggle_mixer_channel;
funcs->get_mixer_channel_name = alsa_get_mixer_channel_name;
}