02
2022-02-16
op
* Copyright (c) 2022 Omar Polo <op@openbsd.org>
04
2022-02-16
op
* Permission to use, copy, modify, and distribute this software for any
05
2022-02-16
op
* purpose with or without fee is hereby granted, provided that the above
06
2022-02-16
op
* copyright notice and this permission notice appear in all copies.
08
2022-02-16
op
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
09
2022-02-16
op
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10
2022-02-16
op
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11
2022-02-16
op
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12
2022-02-16
op
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13
2022-02-16
op
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14
2022-02-16
op
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17
2022-02-16
op
#include <sys/types.h>
18
2022-02-16
op
#include <sys/queue.h>
19
2022-02-16
op
#include <sys/uio.h>
21
2022-02-16
op
#include <err.h>
22
2022-02-16
op
#include <event.h>
23
2022-02-16
op
#include <fcntl.h>
24
2022-02-16
op
#include <math.h>
25
2022-02-16
op
#include <inttypes.h>
26
2022-02-16
op
#include <limits.h>
27
2022-02-16
op
#include <sndio.h>
28
2022-02-16
op
#include <stdio.h>
29
2022-02-16
op
#include <stdint.h>
30
2022-02-16
op
#include <imsg.h>
31
2022-02-16
op
#include <unistd.h>
33
2022-02-16
op
#include <opusfile.h>
35
2022-02-16
op
#include "amused.h"
37
2022-02-16
op
#ifndef nitems
38
2022-02-16
op
#define nitems(x) (sizeof(x)/sizeof(x[0]))
42
2022-02-16
op
play_opus(int fd)
44
2022-02-16
op
static uint16_t pcm[BUFSIZ];
45
2022-02-16
op
static uint8_t out[BUFSIZ * 2];
46
2022-02-16
op
OggOpusFile *of;
49
2022-02-16
op
OpusFileCallbacks cb = {NULL, NULL, NULL, NULL};
50
2022-02-16
op
int i, li, prev_li = -1;
52
2022-02-16
op
if ((f = op_fdopen(&cb, fd, "r")) == NULL)
53
2022-02-16
op
err(1, "fdopen");
55
2022-02-16
op
of = op_open_callbacks(f, &cb, NULL, 0, &ret);
56
2022-02-16
op
if (of == NULL)
57
2022-02-16
op
errx(1, "failed open opus file");
59
2022-02-16
op
for (;;) {
60
2022-02-16
op
if (player_shouldstop())
63
2022-02-16
op
ret = op_read_stereo(of, pcm, nitems(pcm));
64
2022-02-16
op
if (ret == OP_HOLE) /* corrupt file segment? */
66
2022-02-16
op
if (ret < 0)
67
2022-02-16
op
errx(1, "error decoding file (%d)", ret);
68
2022-02-16
op
if (ret == 0)
69
2022-02-16
op
break; /* eof */
71
2022-02-16
op
li = op_current_link(of);
72
2022-02-16
op
if (li != prev_li) {
73
2022-02-16
op
const OpusHead *head;
75
2022-02-16
op
prev_li = li;
77
2022-02-16
op
head = op_head(of, li);
78
2022-02-16
op
if (head->input_sample_rate) {
79
2022-02-18
op
if (player_setup(head->input_sample_rate, 2)
81
2022-02-16
op
err(1, "player_setrate");
85
2022-02-16
op
for (i = 0; i < 2*ret; ++i) {
86
2022-02-16
op
out[2*i+0] = pcm[i] & 0xFF;
87
2022-02-16
op
out[2*i+1] = (pcm[i] >> 8) & 0xFF;
89
2022-02-16
op
sio_write(hdl, out, 4*ret);
92
2022-02-16
op
op_free(of);