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
|
/*
* Copyright © 2011 Mozilla Foundation
*
* This program is made available under an ISC-style license. See the
* accompanying file LICENSE for details.
*/
#undef NDEBUG
#define _BSD_SOURCE
#define _POSIX_SOURCE
#include <pthread.h>
#include <sys/time.h>
#include <assert.h>
#include <limits.h>
#include <poll.h>
#include <unistd.h>
#include <alsa/asoundlib.h>
#include "cubeb/cubeb.h"
#define CUBEB_STREAM_MAX 16
#define CUBEB_WATCHDOG_MS 10000
#define UNUSED __attribute__ ((__unused__))
/* ALSA is not thread-safe. snd_pcm_t instances are individually protected
by the owning cubeb_stream's mutex. snd_pcm_t creation and destruction
is not thread-safe until ALSA 1.0.24 (see alsa-lib.git commit 91c9c8f1),
so those calls must be wrapped in the following mutex. */
static pthread_mutex_t cubeb_alsa_mutex = PTHREAD_MUTEX_INITIALIZER;
static int cubeb_alsa_error_handler_set = 0;
struct mutex {
pthread_mutex_t mutex;
pthread_t owner;
int locked;
};
struct cubeb {
pthread_t thread;
/* Mutex for streams array, must not be held while blocked in poll(2). */
struct mutex mutex;
/* Sparse array of streams managed by this context. */
cubeb_stream * streams[CUBEB_STREAM_MAX];
/* fds and nfds are only updated by cubeb_run when rebuild is set. */
struct pollfd * fds;
nfds_t nfds;
int rebuild;
int shutdown;
/* Control pipe for forcing poll to wake and rebuild fds or recalculate the timeout. */
int control_fd_read;
int control_fd_write;
};
enum stream_state {
IDLE,
RUNNING,
DRAINING,
ERROR
};
struct cubeb_stream {
cubeb * context;
struct mutex mutex;
snd_pcm_t * pcm;
cubeb_data_callback data_callback;
cubeb_state_callback state_callback;
void * user_ptr;
snd_pcm_uframes_t write_position;
snd_pcm_uframes_t last_position;
snd_pcm_uframes_t buffer_size;
snd_pcm_uframes_t period_size;
cubeb_stream_params params;
int slot;
/* Every member after this comment is protected by the owning context's
mutex rather than the stream's mutex, or is only used on the context's
run thread. */
enum stream_state state;
struct pollfd * saved_fds; /* A copy of the pollfds passed in at init time. */
struct pollfd * fds; /* Pointer to this waitable's pollfds within struct cubeb's fds. */
nfds_t nfds;
struct timeval drain_timeout;
/* XXX: Horrible hack -- if an active stream has been idle for
CUBEB_WATCHDOG_MS it will be disabled and the error callback will be
called. This works around a bug seen with older versions of ALSA and
PulseAudio where streams would stop requesting new data despite still
being logically active and playing. */
struct timeval last_activity;
};
static void
mutex_init(struct mutex * mtx)
{
int r;
r = pthread_mutex_init(&mtx->mutex, NULL);
assert(r == 0);
mtx->locked = 0;
}
static void
mutex_destroy(struct mutex * mtx)
{
assert(mtx->locked == 0);
pthread_mutex_destroy(&mtx->mutex);
}
static void
mutex_lock(struct mutex * mtx)
{
int r;
r = pthread_mutex_lock(&mtx->mutex);
assert(r == 0);
mtx->owner = pthread_self();
mtx->locked = 1;
}
static void
mutex_unlock(struct mutex * mtx)
{
int r;
memset(&mtx->owner, 0, sizeof(pthread_t));
mtx->locked = 0;
r = pthread_mutex_unlock(&mtx->mutex);
assert(r == 0);
}
static void
mutex_assert_held(struct mutex * mtx)
{
assert(mtx->locked && pthread_equal(mtx->owner, pthread_self()));
}
static void
mutex_assert_not_held(struct mutex * mtx)
{
assert(!mtx->locked || !pthread_equal(mtx->owner, pthread_self()));
}
static long
stream_data_callback(cubeb_stream * stm, void * user_ptr, void * buffer, long nframes)
{
mutex_assert_not_held(&stm->mutex);
return stm->data_callback(stm, user_ptr, buffer, nframes);
}
static int
stream_state_callback(cubeb_stream * stm, void * user_ptr, cubeb_state state)
{
mutex_assert_not_held(&stm->mutex);
return stm->state_callback(stm, user_ptr, state);
}
static int
any_revents(struct pollfd * fds, nfds_t nfds)
{
nfds_t i;
for (i = 0; i < nfds; ++i) {
if (fds[i].revents) {
return 1;
}
}
return 0;
}
static int
cmp_timeval(struct timeval * a, struct timeval * b)
{
if (a->tv_sec == b->tv_sec) {
if (a->tv_usec == b->tv_usec) {
return 0;
}
return a->tv_usec > b->tv_usec ? 1 : -1;
}
return a->tv_sec > b->tv_sec ? 1 : -1;
}
static int
timeval_to_relative_ms(struct timeval * tv)
{
struct timeval now;
struct timeval dt;
long long t;
int r;
gettimeofday(&now, NULL);
r = cmp_timeval(tv, &now);
if (r >= 0) {
timersub(tv, &now, &dt);
} else {
timersub(&now, tv, &dt);
}
t = dt.tv_sec;
t *= 1000;
t += (dt.tv_usec + 500) / 1000;
if (t > INT_MAX) {
t = INT_MAX;
} else if (t < INT_MIN) {
t = INT_MIN;
}
return r >= 0 ? t : -t;
}
static int
ms_until(struct timeval * tv)
{
return timeval_to_relative_ms(tv);
}
static int
ms_since(struct timeval * tv)
{
return -timeval_to_relative_ms(tv);
}
static void
rebuild(cubeb * ctx)
{
nfds_t nfds;
int i;
nfds_t j;
cubeb_stream * stm;
mutex_assert_held(&ctx->mutex);
assert(ctx->rebuild);
/* Always count context's control pipe fd. */
nfds = 1;
for (i = 0; i < CUBEB_STREAM_MAX; ++i) {
stm = ctx->streams[i];
if (stm) {
stm->fds = NULL;
if (stm->state == RUNNING) {
nfds += stm->nfds;
}
}
}
free(ctx->fds);
ctx->fds = calloc(nfds, sizeof(struct pollfd));
assert(ctx->fds);
ctx->nfds = nfds;
/* Include context's control pipe fd. */
ctx->fds[0].fd = ctx->control_fd_read;
ctx->fds[0].events = POLLIN | POLLERR;
for (i = 0, j = 1; i < CUBEB_STREAM_MAX; ++i) {
stm = ctx->streams[i];
if (stm && stm->state == RUNNING) {
memcpy(&ctx->fds[j], stm->saved_fds, stm->nfds * sizeof(struct pollfd));
stm->fds = &ctx->fds[j];
j += stm->nfds;
}
}
ctx->rebuild = 0;
}
static void
poll_wake(cubeb * ctx)
{
write(ctx->control_fd_write, "x", 1);
}
static void
set_timeout(struct timeval * timeout, unsigned int ms)
{
gettimeofday(timeout, NULL);
timeout->tv_sec += ms / 1000;
timeout->tv_usec += (ms % 1000) * 1000;
}
static void
cubeb_set_stream_state(cubeb_stream * stm, enum stream_state state)
{
mutex_assert_not_held(&stm->mutex);
mutex_assert_held(&stm->context->mutex);
stm->state = state;
stm->context->rebuild = 1;
poll_wake(stm->context);
}
static void
cubeb_refill_stream(cubeb_stream * stm)
{
int r;
unsigned short revents;
snd_pcm_sframes_t avail;
long got;
void * p;
int draining = 0;
mutex_lock(&stm->mutex);
r = snd_pcm_poll_descriptors_revents(stm->pcm, stm->fds, stm->nfds, &revents);
if (r < 0 || revents != POLLOUT) {
/* This should be a stream error; it makes no sense for poll(2) to wake
for this stream and then have the stream report that it's not ready.
Unfortunately, this does happen, so just bail out and try again. */
mutex_unlock(&stm->mutex);
return;
}
avail = snd_pcm_avail_update(stm->pcm);
if (avail == -EPIPE) {
snd_pcm_recover(stm->pcm, avail, 1);
avail = snd_pcm_avail_update(stm->pcm);
}
/* Failed to recover from an xrun, this stream must be broken. */
if (avail < 0) {
mutex_unlock(&stm->mutex);
cubeb_set_stream_state(stm, ERROR);
stream_state_callback(stm, stm->user_ptr, CUBEB_STATE_ERROR);
return;
}
/* This should never happen. */
if ((unsigned int) avail > stm->buffer_size) {
avail = stm->buffer_size;
}
/* poll(2) claims this stream is active, so there should be some space
available to write. If avail is still zero here, the stream must be in
a funky state, so recover and try again. */
if (avail == 0) {
snd_pcm_recover(stm->pcm, -EPIPE, 1);
avail = snd_pcm_avail_update(stm->pcm);
if (avail <= 0) {
mutex_unlock(&stm->mutex);
cubeb_set_stream_state(stm, ERROR);
stream_state_callback(stm, stm->user_ptr, CUBEB_STATE_ERROR);
return;
}
}
p = calloc(1, snd_pcm_frames_to_bytes(stm->pcm, avail));
assert(p);
mutex_unlock(&stm->mutex);
got = stream_data_callback(stm, stm->user_ptr, p, avail);
mutex_lock(&stm->mutex);
if (got < 0) {
mutex_unlock(&stm->mutex);
cubeb_set_stream_state(stm, ERROR);
stream_state_callback(stm, stm->user_ptr, CUBEB_STATE_ERROR);
return;
}
if (got > 0) {
snd_pcm_sframes_t wrote = snd_pcm_writei(stm->pcm, p, got);
if (wrote == -EPIPE) {
snd_pcm_recover(stm->pcm, wrote, 1);
wrote = snd_pcm_writei(stm->pcm, p, got);
}
assert(wrote >= 0 && wrote == got);
stm->write_position += wrote;
gettimeofday(&stm->last_activity, NULL);
}
if (got != avail) {
long buffer_fill = stm->buffer_size - (avail - got);
double buffer_time = (double) buffer_fill / stm->params.rate;
/* Fill the remaining buffer with silence to guarantee one full period
has been written. */
snd_pcm_writei(stm->pcm, (char *) p + got, avail - got);
set_timeout(&stm->drain_timeout, buffer_time * 1000);
draining = 1;
}
free(p);
mutex_unlock(&stm->mutex);
if (draining) {
cubeb_set_stream_state(stm, DRAINING);
}
}
static int
calculate_timeout(cubeb * ctx, int initial)
{
int i;
int timeout;
cubeb_stream * stm;
int ms;
mutex_assert_held(&ctx->mutex);
timeout = initial;
for (i = 0; i < CUBEB_STREAM_MAX; ++i) {
stm = ctx->streams[i];
if (stm && stm->state == DRAINING) {
ms = ms_until(&stm->drain_timeout);
if (ms >= 0 && timeout > ms) {
timeout = ms;
}
}
}
return timeout;
}
static int
cubeb_run(cubeb * ctx)
{
int r;
int timeout;
int i;
char dummy;
cubeb_stream * stm;
mutex_lock(&ctx->mutex);
if (ctx->rebuild) {
rebuild(ctx);
}
/* Wake up at least once per second for the watchdog. */
timeout = calculate_timeout(ctx, 1000);
mutex_unlock(&ctx->mutex);
r = poll(ctx->fds, ctx->nfds, timeout);
mutex_lock(&ctx->mutex);
if (r > 0) {
if (ctx->fds[0].revents & POLLIN) {
read(ctx->control_fd_read, &dummy, 1);
if (ctx->shutdown) {
mutex_unlock(&ctx->mutex);
return -1;
}
}
for (i = 0; i < CUBEB_STREAM_MAX; ++i) {
stm = ctx->streams[i];
if (stm && stm->state == RUNNING && stm->fds && any_revents(stm->fds, stm->nfds)) {
cubeb_refill_stream(stm);
}
}
} else if (r == 0) {
for (i = 0; i < CUBEB_STREAM_MAX; ++i) {
stm = ctx->streams[i];
if (stm) {
if (stm->state == DRAINING && ms_since(&stm->drain_timeout) >= 0) {
cubeb_set_stream_state(stm, IDLE);
stream_state_callback(stm, stm->user_ptr, CUBEB_STATE_DRAINED);
} else if (stm->state == RUNNING && ms_since(&stm->last_activity) > CUBEB_WATCHDOG_MS) {
cubeb_set_stream_state(stm, ERROR);
stream_state_callback(stm, stm->user_ptr, CUBEB_STATE_ERROR);
}
}
}
}
mutex_unlock(&ctx->mutex);
return 0;
}
static void *
cubeb_run_thread(void * context)
{
cubeb * ctx = context;
int r;
do {
r = cubeb_run(ctx);
} while (r >= 0);
return NULL;
}
static int
cubeb_locked_pcm_open(snd_pcm_t ** pcm, snd_pcm_stream_t stream)
{
int r;
pthread_mutex_lock(&cubeb_alsa_mutex);
r = snd_pcm_open(pcm, "default", stream, SND_PCM_NONBLOCK);
pthread_mutex_unlock(&cubeb_alsa_mutex);
return r;
}
static int
cubeb_locked_pcm_close(snd_pcm_t * pcm)
{
int r;
pthread_mutex_lock(&cubeb_alsa_mutex);
r = snd_pcm_close(pcm);
pthread_mutex_unlock(&cubeb_alsa_mutex);
return r;
}
static int
cubeb_register_stream(cubeb * ctx, cubeb_stream * stm)
{
int i;
int r = -1;
mutex_lock(&ctx->mutex);
for (i = 0; i < CUBEB_STREAM_MAX; ++i) {
if (!ctx->streams[i]) {
ctx->streams[i] = stm;
r = i;
break;
}
}
mutex_unlock(&ctx->mutex);
return r;
}
static void
cubeb_unregister_stream(cubeb * ctx, int slot)
{
assert(slot >= 0 && slot < CUBEB_STREAM_MAX);
mutex_lock(&ctx->mutex);
ctx->streams[slot] = NULL;
mutex_unlock(&ctx->mutex);
}
static void
silent_error_handler(char const * file UNUSED, int line UNUSED, char const * function UNUSED,
int err UNUSED, char const * fmt UNUSED, ...)
{
}
int
cubeb_init(cubeb ** context, char const * context_name UNUSED)
{
cubeb * ctx;
int r;
int i;
int fd[2];
pthread_attr_t attr;
assert(context);
*context = NULL;
pthread_mutex_lock(&cubeb_alsa_mutex);
if (!cubeb_alsa_error_handler_set) {
snd_lib_error_set_handler(silent_error_handler);
cubeb_alsa_error_handler_set = 1;
}
pthread_mutex_unlock(&cubeb_alsa_mutex);
ctx = calloc(1, sizeof(*ctx));
assert(ctx);
mutex_init(&ctx->mutex);
r = pipe(fd);
assert(r == 0);
for (i = 0; i < 2; ++i) {
fcntl(fd[i], F_SETFD, fcntl(fd[i], F_GETFD) | FD_CLOEXEC);
fcntl(fd[i], F_SETFL, fcntl(fd[i], F_GETFL) | O_NONBLOCK);
}
ctx->control_fd_read = fd[0];
ctx->control_fd_write = fd[1];
/* Force an early rebuild when cubeb_run is first called to ensure fds and
nfds have been initialized. */
ctx->rebuild = 1;
r = pthread_attr_init(&attr);
assert(r == 0);
r = pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
assert(r == 0);
r = pthread_create(&ctx->thread, &attr, cubeb_run_thread, ctx);
assert(r == 0);
r = pthread_attr_destroy(&attr);
assert(r == 0);
*context = ctx;
return CUBEB_OK;
}
void
cubeb_destroy(cubeb * ctx)
{
int r;
assert(ctx);
mutex_lock(&ctx->mutex);
ctx->shutdown = 1;
poll_wake(ctx);
mutex_unlock(&ctx->mutex);
r = pthread_join(ctx->thread, NULL);
assert(r == 0);
close(ctx->control_fd_read);
close(ctx->control_fd_write);
mutex_destroy(&ctx->mutex);
free(ctx->fds);
free(ctx);
}
int
cubeb_stream_init(cubeb * context, cubeb_stream ** stream, char const * stream_name UNUSED,
cubeb_stream_params stream_params, unsigned int latency,
cubeb_data_callback data_callback, cubeb_state_callback state_callback,
void * user_ptr)
{
cubeb_stream * stm;
int r;
snd_pcm_format_t format;
assert(context && stream);
*stream = NULL;
if (stream_params.rate < 1 || stream_params.rate > 192000 ||
stream_params.channels < 1 || stream_params.channels > 32 ||
latency < 1 || latency > 2000) {
return CUBEB_ERROR_INVALID_FORMAT;
}
switch (stream_params.format) {
case CUBEB_SAMPLE_S16LE:
format = SND_PCM_FORMAT_S16_LE;
break;
case CUBEB_SAMPLE_S16BE:
format = SND_PCM_FORMAT_S16_BE;
break;
case CUBEB_SAMPLE_FLOAT32LE:
format = SND_PCM_FORMAT_FLOAT_LE;
break;
case CUBEB_SAMPLE_FLOAT32BE:
format = SND_PCM_FORMAT_FLOAT_BE;
break;
default:
return CUBEB_ERROR_INVALID_FORMAT;
}
stm = calloc(1, sizeof(*stm));
assert(stm);
stm->context = context;
stm->data_callback = data_callback;
stm->state_callback = state_callback;
stm->user_ptr = user_ptr;
stm->params = stream_params;
stm->state = IDLE;
stm->slot = -1;
mutex_init(&stm->mutex);
r = cubeb_locked_pcm_open(&stm->pcm, SND_PCM_STREAM_PLAYBACK);
if (r < 0) {
cubeb_stream_destroy(stm);
return CUBEB_ERROR;
}
r = snd_pcm_nonblock(stm->pcm, 1);
assert(r == 0);
r = snd_pcm_set_params(stm->pcm, format, SND_PCM_ACCESS_RW_INTERLEAVED,
stm->params.channels, stm->params.rate, 1,
latency * 1000);
if (r < 0) {
cubeb_stream_destroy(stm);
return CUBEB_ERROR_INVALID_FORMAT;
}
r = snd_pcm_get_params(stm->pcm, &stm->buffer_size, &stm->period_size);
assert(r == 0);
stm->nfds = snd_pcm_poll_descriptors_count(stm->pcm);
assert(stm->nfds > 0);
stm->saved_fds = calloc(stm->nfds, sizeof(struct pollfd));
assert(stm->saved_fds);
r = snd_pcm_poll_descriptors(stm->pcm, stm->saved_fds, stm->nfds);
assert((nfds_t) r == stm->nfds);
stm->slot = cubeb_register_stream(context, stm);
if (stm->slot == -1) {
cubeb_stream_destroy(stm);
return CUBEB_ERROR;
}
*stream = stm;
return CUBEB_OK;
}
void
cubeb_stream_destroy(cubeb_stream * stm)
{
assert(stm && (stm->state == IDLE || stm->state == ERROR));
mutex_lock(&stm->mutex);
if (stm->pcm) {
cubeb_locked_pcm_close(stm->pcm);
stm->pcm = NULL;
}
free(stm->saved_fds);
mutex_unlock(&stm->mutex);
mutex_destroy(&stm->mutex);
if (stm->slot != -1) {
cubeb_unregister_stream(stm->context, stm->slot);
}
free(stm);
}
int
cubeb_stream_start(cubeb_stream * stm)
{
assert(stm);
mutex_lock(&stm->mutex);
snd_pcm_pause(stm->pcm, 0);
mutex_unlock(&stm->mutex);
mutex_lock(&stm->context->mutex);
cubeb_set_stream_state(stm, RUNNING);
mutex_unlock(&stm->context->mutex);
return CUBEB_OK;
}
int
cubeb_stream_stop(cubeb_stream * stm)
{
assert(stm);
mutex_lock(&stm->context->mutex);
cubeb_set_stream_state(stm, IDLE);
mutex_unlock(&stm->context->mutex);
mutex_lock(&stm->mutex);
snd_pcm_pause(stm->pcm, 1);
mutex_unlock(&stm->mutex);
return CUBEB_OK;
}
int
cubeb_stream_get_position(cubeb_stream * stm, uint64_t * position)
{
snd_pcm_sframes_t delay;
assert(stm && position);
mutex_lock(&stm->mutex);
delay = -1;
if (snd_pcm_state(stm->pcm) != SND_PCM_STATE_RUNNING ||
snd_pcm_delay(stm->pcm, &delay) != 0) {
*position = stm->last_position;
mutex_unlock(&stm->mutex);
return CUBEB_OK;
}
assert(delay >= 0);
*position = 0;
if (stm->write_position >= (snd_pcm_uframes_t) delay) {
*position = stm->write_position - delay;
}
stm->last_position = *position;
mutex_unlock(&stm->mutex);
return CUBEB_OK;
}
|