Blame


1 3baa2617 2022-02-16 op /*
2 3baa2617 2022-02-16 op * Copyright (c) 2022 Omar Polo <op@openbsd.org>
3 3baa2617 2022-02-16 op *
4 3baa2617 2022-02-16 op * Permission to use, copy, modify, and distribute this software for any
5 3baa2617 2022-02-16 op * purpose with or without fee is hereby granted, provided that the above
6 3baa2617 2022-02-16 op * copyright notice and this permission notice appear in all copies.
7 3baa2617 2022-02-16 op *
8 3baa2617 2022-02-16 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 3baa2617 2022-02-16 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 3baa2617 2022-02-16 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 3baa2617 2022-02-16 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 3baa2617 2022-02-16 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 3baa2617 2022-02-16 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 3baa2617 2022-02-16 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 3baa2617 2022-02-16 op */
16 3baa2617 2022-02-16 op
17 3baa2617 2022-02-16 op #include <sys/types.h>
18 3baa2617 2022-02-16 op #include <sys/queue.h>
19 3baa2617 2022-02-16 op #include <sys/uio.h>
20 3baa2617 2022-02-16 op
21 3baa2617 2022-02-16 op #include <err.h>
22 3baa2617 2022-02-16 op #include <event.h>
23 3baa2617 2022-02-16 op #include <fcntl.h>
24 3baa2617 2022-02-16 op #include <math.h>
25 3baa2617 2022-02-16 op #include <inttypes.h>
26 bb3f279f 2022-02-16 op #include <limits.h>
27 3baa2617 2022-02-16 op #include <stdio.h>
28 3baa2617 2022-02-16 op #include <stdint.h>
29 3baa2617 2022-02-16 op #include <imsg.h>
30 3baa2617 2022-02-16 op #include <unistd.h>
31 3baa2617 2022-02-16 op
32 3baa2617 2022-02-16 op #include <opusfile.h>
33 3baa2617 2022-02-16 op
34 3baa2617 2022-02-16 op #include "amused.h"
35 cec9ff75 2022-02-18 op #include "log.h"
36 3baa2617 2022-02-16 op
37 3baa2617 2022-02-16 op #ifndef nitems
38 3baa2617 2022-02-16 op #define nitems(x) (sizeof(x)/sizeof(x[0]))
39 3baa2617 2022-02-16 op #endif
40 3baa2617 2022-02-16 op
41 0da0ad46 2022-03-09 op int
42 3baa2617 2022-02-16 op play_opus(int fd)
43 3baa2617 2022-02-16 op {
44 3baa2617 2022-02-16 op static uint16_t pcm[BUFSIZ];
45 3baa2617 2022-02-16 op static uint8_t out[BUFSIZ * 2];
46 3baa2617 2022-02-16 op OggOpusFile *of;
47 3baa2617 2022-02-16 op void *f;
48 0da0ad46 2022-03-09 op int r, ret = 0;
49 3baa2617 2022-02-16 op OpusFileCallbacks cb = {NULL, NULL, NULL, NULL};
50 3baa2617 2022-02-16 op int i, li, prev_li = -1;
51 3baa2617 2022-02-16 op
52 3baa2617 2022-02-16 op if ((f = op_fdopen(&cb, fd, "r")) == NULL)
53 3baa2617 2022-02-16 op err(1, "fdopen");
54 3baa2617 2022-02-16 op
55 0da0ad46 2022-03-09 op of = op_open_callbacks(f, &cb, NULL, 0, &r);
56 cec9ff75 2022-02-18 op if (of == NULL) {
57 cec9ff75 2022-02-18 op close(fd);
58 0da0ad46 2022-03-09 op return -1;
59 cec9ff75 2022-02-18 op }
60 3baa2617 2022-02-16 op
61 3baa2617 2022-02-16 op for (;;) {
62 a58776af 2022-02-18 op /* NB: will downmix multichannels files into two channels */
63 0da0ad46 2022-03-09 op r = op_read_stereo(of, pcm, nitems(pcm));
64 0da0ad46 2022-03-09 op if (r == OP_HOLE) /* corrupt file segment? */
65 3baa2617 2022-02-16 op continue;
66 0da0ad46 2022-03-09 op if (r < 0) {
67 cec9ff75 2022-02-18 op log_warnx("error %d decoding file", ret);
68 0da0ad46 2022-03-09 op ret = -1;
69 cec9ff75 2022-02-18 op break;
70 cec9ff75 2022-02-18 op }
71 0da0ad46 2022-03-09 op if (r == 0)
72 3baa2617 2022-02-16 op break; /* eof */
73 3baa2617 2022-02-16 op
74 3baa2617 2022-02-16 op li = op_current_link(of);
75 3baa2617 2022-02-16 op if (li != prev_li) {
76 3baa2617 2022-02-16 op const OpusHead *head;
77 3baa2617 2022-02-16 op
78 3baa2617 2022-02-16 op prev_li = li;
79 3baa2617 2022-02-16 op head = op_head(of, li);
80 efe0c883 2022-02-18 op if (head->input_sample_rate &&
81 e24324f1 2022-02-21 op player_setup(16, head->input_sample_rate, 2) == -1)
82 1fb06c31 2022-06-10 op err(1, "player_setup");
83 3baa2617 2022-02-16 op }
84 3baa2617 2022-02-16 op
85 74a7482c 2022-03-23 op for (i = 0; i < 2*r; ++i) {
86 3baa2617 2022-02-16 op out[2*i+0] = pcm[i] & 0xFF;
87 3baa2617 2022-02-16 op out[2*i+1] = (pcm[i] >> 8) & 0xFF;
88 3baa2617 2022-02-16 op }
89 2139c525 2022-03-09 op
90 74a7482c 2022-03-23 op if (!play(out, 4*r)) {
91 0da0ad46 2022-03-09 op ret = 1;
92 2139c525 2022-03-09 op break;
93 0da0ad46 2022-03-09 op }
94 3baa2617 2022-02-16 op }
95 3baa2617 2022-02-16 op
96 3baa2617 2022-02-16 op op_free(of);
97 0da0ad46 2022-03-09 op return ret;
98 3baa2617 2022-02-16 op }