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 <vorbis/codec.h>
33 3baa2617 2022-02-16 op #include <vorbis/vorbisfile.h>
34 3baa2617 2022-02-16 op
35 3baa2617 2022-02-16 op #include "amused.h"
36 ead41118 2022-02-18 op #include "log.h"
37 3baa2617 2022-02-16 op
38 3baa2617 2022-02-16 op #ifndef nitems
39 3baa2617 2022-02-16 op #define nitems(x) (sizeof(x)/sizeof(x[0]))
40 3baa2617 2022-02-16 op #endif
41 3baa2617 2022-02-16 op
42 0da0ad46 2022-03-09 op int
43 17ef54d6 2022-06-22 op play_oggvorbis(int fd, const char **errstr)
44 3baa2617 2022-02-16 op {
45 3baa2617 2022-02-16 op static uint8_t pcmout[4096];
46 3baa2617 2022-02-16 op FILE *f;
47 3baa2617 2022-02-16 op OggVorbis_File vf;
48 efe0c883 2022-02-18 op vorbis_info *vi;
49 0da0ad46 2022-03-09 op int current_section, eof = 0, ret = 0;
50 3baa2617 2022-02-16 op
51 3baa2617 2022-02-16 op if ((f = fdopen(fd, "r")) == NULL)
52 3baa2617 2022-02-16 op err(1, "fdopen");
53 3baa2617 2022-02-16 op
54 ead41118 2022-02-18 op if (ov_open_callbacks(f, &vf, NULL, 0, OV_CALLBACKS_NOCLOSE) < 0) {
55 17ef54d6 2022-06-22 op *errstr = "input is not an Ogg bitstream";
56 0da0ad46 2022-03-09 op ret = -1;
57 ead41118 2022-02-18 op goto end;
58 ead41118 2022-02-18 op }
59 3baa2617 2022-02-16 op
60 efe0c883 2022-02-18 op /*
61 efe0c883 2022-02-18 op * we could extract some tags by looping over the NULL
62 efe0c883 2022-02-18 op * terminated array returned by ov_comment(&vf, -1), see
63 efe0c883 2022-02-18 op * previous revision of this file.
64 efe0c883 2022-02-18 op */
65 efe0c883 2022-02-18 op vi = ov_info(&vf, -1);
66 e24324f1 2022-02-21 op if (player_setup(16, vi->rate, vi->channels) == -1)
67 1fb06c31 2022-06-10 op err(1, "player_setup");
68 3baa2617 2022-02-16 op
69 ff06024f 2022-07-08 op player_setduration(ov_time_total(&vf, -1) * vi->rate);
70 ff06024f 2022-07-08 op
71 3baa2617 2022-02-16 op while (!eof) {
72 ae5d742e 2022-03-23 op long r;
73 3baa2617 2022-02-16 op
74 ae5d742e 2022-03-23 op r = ov_read(&vf, pcmout, sizeof(pcmout), 0, 2, 1,
75 3baa2617 2022-02-16 op &current_section);
76 ae5d742e 2022-03-23 op if (r == 0)
77 3baa2617 2022-02-16 op eof = 1;
78 ae5d742e 2022-03-23 op else if (r > 0) {
79 3baa2617 2022-02-16 op /* TODO: deal with sample rate changes */
80 ae5d742e 2022-03-23 op if (!play(pcmout, r)) {
81 0da0ad46 2022-03-09 op ret = 1;
82 2139c525 2022-03-09 op break;
83 0da0ad46 2022-03-09 op }
84 3baa2617 2022-02-16 op }
85 3baa2617 2022-02-16 op }
86 3baa2617 2022-02-16 op
87 3baa2617 2022-02-16 op ov_clear(&vf);
88 ead41118 2022-02-18 op
89 ead41118 2022-02-18 op end:
90 9491bb71 2022-02-18 op fclose(f);
91 0da0ad46 2022-03-09 op return ret;
92 3baa2617 2022-02-16 op }