Blob


1 /*
2 * Copyright (c) 2022 Omar Polo <op@openbsd.org>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 #include <sys/types.h>
18 #include <sys/queue.h>
19 #include <sys/uio.h>
21 #include <err.h>
22 #include <event.h>
23 #include <fcntl.h>
24 #include <math.h>
25 #include <inttypes.h>
26 #include <limits.h>
27 #include <sndio.h>
28 #include <stdio.h>
29 #include <stdint.h>
30 #include <imsg.h>
31 #include <unistd.h>
33 #include <vorbis/codec.h>
34 #include <vorbis/vorbisfile.h>
36 #include "amused.h"
38 #ifndef nitems
39 #define nitems(x) (sizeof(x)/sizeof(x[0]))
40 #endif
42 void
43 play_oggvorbis(int fd)
44 {
45 static uint8_t pcmout[4096];
46 FILE *f;
47 OggVorbis_File vf;
48 int current_section, eof = 0;
50 if ((f = fdopen(fd, "r")) == NULL)
51 err(1, "fdopen");
53 if (ov_open_callbacks(f, &vf, NULL, 0, OV_CALLBACKS_NOCLOSE) < 0)
54 errx(1, "input is not an Ogg bitstream");
56 {
57 char **ptr;
58 vorbis_info *vi;
60 vi = ov_info(&vf, -1);
61 for (ptr = ov_comment(&vf, -1)->user_comments; *ptr; ++ptr)
62 printf("%s\n", *ptr);
64 printf("bitstream is %d channel, %ldHz\n", vi->channels, vi->rate);
66 if (player_setup(vi->rate, vi->channels) == -1)
67 err(1, "player_setrate");
68 }
70 while (!eof) {
71 long ret;
73 if (player_shouldstop())
74 break;
76 ret = ov_read(&vf, pcmout, sizeof(pcmout), 0, 2, 1,
77 &current_section);
78 if (ret == 0)
79 eof = 1;
80 else if (ret < 0)
81 warnx("non-fatal error in the stream %ld", ret);
82 else {
83 /* TODO: deal with sample rate changes */
84 sio_write(hdl, pcmout, ret);
85 }
86 }
88 ov_clear(&vf);
89 }