Blame


1 0ea0da1e 2022-02-23 op /*
2 0ea0da1e 2022-02-23 op * Copyright (c) 2022 Omar Polo <op@openbsd.org>
3 0ea0da1e 2022-02-23 op *
4 0ea0da1e 2022-02-23 op * Permission to use, copy, modify, and distribute this software for any
5 0ea0da1e 2022-02-23 op * purpose with or without fee is hereby granted, provided that the above
6 0ea0da1e 2022-02-23 op * copyright notice and this permission notice appear in all copies.
7 0ea0da1e 2022-02-23 op *
8 0ea0da1e 2022-02-23 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 0ea0da1e 2022-02-23 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 0ea0da1e 2022-02-23 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 0ea0da1e 2022-02-23 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 0ea0da1e 2022-02-23 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 0ea0da1e 2022-02-23 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 0ea0da1e 2022-02-23 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 0ea0da1e 2022-02-23 op */
16 0ea0da1e 2022-02-23 op
17 0ea0da1e 2022-02-23 op #include <sys/mman.h>
18 0ea0da1e 2022-02-23 op #include <sys/stat.h>
19 0ea0da1e 2022-02-23 op #include <sys/types.h>
20 0ea0da1e 2022-02-23 op #include <sys/queue.h>
21 0ea0da1e 2022-02-23 op #include <sys/uio.h>
22 0ea0da1e 2022-02-23 op
23 0ea0da1e 2022-02-23 op #include <err.h>
24 0ea0da1e 2022-02-23 op #include <event.h>
25 0ea0da1e 2022-02-23 op #include <limits.h>
26 0ea0da1e 2022-02-23 op #include <imsg.h>
27 0ea0da1e 2022-02-23 op #include <unistd.h>
28 0ea0da1e 2022-02-23 op
29 0ea0da1e 2022-02-23 op #include <mpg123.h>
30 0ea0da1e 2022-02-23 op
31 0ea0da1e 2022-02-23 op #include "amused.h"
32 0ea0da1e 2022-02-23 op #include "log.h"
33 0ea0da1e 2022-02-23 op
34 0ea0da1e 2022-02-23 op static int
35 0ea0da1e 2022-02-23 op setup(mpg123_handle *mh)
36 0ea0da1e 2022-02-23 op {
37 0ea0da1e 2022-02-23 op long rate;
38 0ea0da1e 2022-02-23 op int chan, enc;
39 0ea0da1e 2022-02-23 op
40 0ea0da1e 2022-02-23 op if (mpg123_getformat(mh, &rate, &chan, &enc) != MPG123_OK) {
41 0ea0da1e 2022-02-23 op log_warnx("mpg123_getformat failed");
42 0ea0da1e 2022-02-23 op return 0;
43 0ea0da1e 2022-02-23 op }
44 0ea0da1e 2022-02-23 op
45 0ea0da1e 2022-02-23 op if (player_setup(mpg123_encsize(enc) * 8, rate, chan) == -1)
46 1fb06c31 2022-06-10 op err(1, "player_setup");
47 0ea0da1e 2022-02-23 op
48 0ea0da1e 2022-02-23 op return 1;
49 0ea0da1e 2022-02-23 op }
50 0ea0da1e 2022-02-23 op
51 0da0ad46 2022-03-09 op int
52 0ea0da1e 2022-02-23 op play_mp3(int fd)
53 0ea0da1e 2022-02-23 op {
54 0ea0da1e 2022-02-23 op static char buf[4096];
55 0ea0da1e 2022-02-23 op size_t len;
56 0ea0da1e 2022-02-23 op mpg123_handle *mh;
57 0da0ad46 2022-03-09 op int err, ret = -1;
58 0ea0da1e 2022-02-23 op
59 0ea0da1e 2022-02-23 op if ((mh = mpg123_new(NULL, NULL)) == NULL)
60 0ea0da1e 2022-02-23 op fatal("mpg123_new");
61 0ea0da1e 2022-02-23 op
62 0ea0da1e 2022-02-23 op if (mpg123_open_fd(mh, fd) != MPG123_OK) {
63 0ea0da1e 2022-02-23 op log_warnx("mpg123_open_fd failed");
64 0ea0da1e 2022-02-23 op close(fd);
65 0da0ad46 2022-03-09 op return -1;
66 0ea0da1e 2022-02-23 op }
67 0ea0da1e 2022-02-23 op
68 0ea0da1e 2022-02-23 op if (!setup(mh))
69 0ea0da1e 2022-02-23 op goto done;
70 0ea0da1e 2022-02-23 op
71 0ea0da1e 2022-02-23 op for (;;) {
72 0ea0da1e 2022-02-23 op err = mpg123_read(mh, buf, sizeof(buf), &len);
73 0ea0da1e 2022-02-23 op switch (err) {
74 0ea0da1e 2022-02-23 op case MPG123_DONE:
75 0da0ad46 2022-03-09 op ret = 0;
76 0ea0da1e 2022-02-23 op goto done;
77 0ea0da1e 2022-02-23 op case MPG123_NEW_FORMAT:
78 0ea0da1e 2022-02-23 op if (!setup(mh))
79 0ea0da1e 2022-02-23 op goto done;
80 0ea0da1e 2022-02-23 op break;
81 0ea0da1e 2022-02-23 op case MPG123_OK:
82 0da0ad46 2022-03-09 op if (!play(buf, len)) {
83 0da0ad46 2022-03-09 op ret = 1;
84 2139c525 2022-03-09 op goto done;
85 0da0ad46 2022-03-09 op }
86 0ea0da1e 2022-02-23 op break;
87 0ea0da1e 2022-02-23 op default:
88 5f42a6c6 2022-05-23 op log_warnx("error decoding mp3, "
89 5f42a6c6 2022-05-23 op "continuing nevertheless");
90 5f42a6c6 2022-05-23 op break;
91 0ea0da1e 2022-02-23 op }
92 0ea0da1e 2022-02-23 op }
93 0ea0da1e 2022-02-23 op
94 0ea0da1e 2022-02-23 op done:
95 0ea0da1e 2022-02-23 op mpg123_delete(mh);
96 0ea0da1e 2022-02-23 op close(fd);
97 0da0ad46 2022-03-09 op return ret;
98 0ea0da1e 2022-02-23 op }