Blame
Date:
Wed Mar 9 09:13:06 2022 UTC
Message:
refactor the player_shouldstop/sio_write dance in a function
01
2022-02-16
op
/*
02
2022-02-16
op
* Copyright (c) 2022 Omar Polo <op@openbsd.org>
03
2022-02-16
op
*
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.
07
2022-02-16
op
*
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.
15
2022-02-16
op
*/
16
2022-02-16
op
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>
20
2022-02-16
op
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>
32
2022-02-16
op
33
2022-02-16
op
#include <vorbis/codec.h>
34
2022-02-16
op
#include <vorbis/vorbisfile.h>
35
2022-02-16
op
36
2022-02-16
op
#include "amused.h"
37
2022-02-18
op
#include "log.h"
38
2022-02-16
op
39
2022-02-16
op
#ifndef nitems
40
2022-02-16
op
#define nitems(x) (sizeof(x)/sizeof(x[0]))
41
2022-02-16
op
#endif
42
2022-02-16
op
43
2022-02-16
op
void
44
2022-02-16
op
play_oggvorbis(int fd)
45
2022-02-16
op
{
46
2022-02-16
op
static uint8_t pcmout[4096];
47
2022-02-16
op
FILE *f;
48
2022-02-16
op
OggVorbis_File vf;
49
2022-02-18
op
vorbis_info *vi;
50
2022-02-16
op
int current_section, eof = 0;
51
2022-02-16
op
52
2022-02-16
op
if ((f = fdopen(fd, "r")) == NULL)
53
2022-02-16
op
err(1, "fdopen");
54
2022-02-16
op
55
2022-02-18
op
if (ov_open_callbacks(f, &vf, NULL, 0, OV_CALLBACKS_NOCLOSE) < 0) {
56
2022-02-18
op
log_warnx("input is not an Ogg bitstream");
57
2022-02-18
op
goto end;
58
2022-02-18
op
}
59
2022-02-16
op
60
2022-02-18
op
/*
61
2022-02-18
op
* we could extract some tags by looping over the NULL
62
2022-02-18
op
* terminated array returned by ov_comment(&vf, -1), see
63
2022-02-18
op
* previous revision of this file.
64
2022-02-18
op
*/
65
2022-02-18
op
vi = ov_info(&vf, -1);
66
2022-02-21
op
if (player_setup(16, vi->rate, vi->channels) == -1)
67
2022-02-18
op
err(1, "player_setrate");
68
2022-02-16
op
69
2022-02-16
op
while (!eof) {
70
2022-02-16
op
long ret;
71
2022-02-16
op
72
2022-02-16
op
ret = ov_read(&vf, pcmout, sizeof(pcmout), 0, 2, 1,
73
2022-02-16
op
&current_section);
74
2022-02-16
op
if (ret == 0)
75
2022-02-16
op
eof = 1;
76
2022-02-18
op
else if (ret > 0) {
77
2022-02-16
op
/* TODO: deal with sample rate changes */
78
2022-03-09
op
if (!play(pcmout, ret))
79
2022-03-09
op
break;
80
2022-02-16
op
}
81
2022-02-16
op
}
82
2022-02-16
op
83
2022-02-16
op
ov_clear(&vf);
84
2022-02-18
op
85
2022-02-18
op
end:
86
2022-02-18
op
fclose(f);
87
2022-02-16
op
}
Omar Polo