-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvorbis.c
415 lines (369 loc) · 9.78 KB
/
vorbis.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
/*
* Copyright 2008-2013 Various Authors
* Copyright 2004-2005 Timo Hirvonen
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "ip.h"
#include "xmalloc.h"
#include "read_wrapper.h"
#include "debug.h"
#ifdef HAVE_CONFIG
#include "config/tremor.h"
#endif
#include "comment.h"
#ifdef CONFIG_TREMOR
#include <tremor/ivorbisfile.h>
#else
#include <vorbis/vorbisfile.h>
#endif
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <unistd.h>
#include <math.h>
struct vorbis_private {
OggVorbis_File vf;
int current_section;
};
/* http://www.xiph.org/vorbis/doc/vorbisfile/callbacks.html */
static size_t read_func(void *ptr, size_t size, size_t nmemb, void *datasource)
{
struct input_plugin_data *ip_data = datasource;
int rc;
rc = read_wrapper(ip_data, ptr, size * nmemb);
if (rc == -1) {
d_print("error: %s\n", strerror(errno));
return 0;
}
if (rc == 0) {
errno = 0;
return 0;
}
return rc / size;
}
static int seek_func(void *datasource, ogg_int64_t offset, int whence)
{
struct input_plugin_data *ip_data = datasource;
if (lseek(ip_data->fd, offset, whence) == -1)
return -1;
return 0;
}
static int close_func(void *datasource)
{
struct input_plugin_data *ip_data = datasource;
int rc;
rc = close(ip_data->fd);
ip_data->fd = -1;
return rc;
}
static long tell_func(void *datasource)
{
struct input_plugin_data *ip_data = datasource;
off_t off;
off = lseek(ip_data->fd, 0, SEEK_CUR);
return (off == -1) ? -1 : off;
}
/*
* typedef struct {
* size_t (*read_func) (void *ptr, size_t size, size_t nmemb, void *datasource);
* int (*seek_func) (void *datasource, ogg_int64_t offset, int whence);
* int (*close_func) (void *datasource);
* long (*tell_func) (void *datasource);
* } ov_callbacks;
*/
static ov_callbacks callbacks = {
.read_func = read_func,
.seek_func = seek_func,
.close_func = close_func,
.tell_func = tell_func
};
/* http://xiph.org/vorbis/doc/Vorbis_I_spec.html#x1-800004.3.9 */
static void channel_map_init_vorbis(int channels, channel_position_t *map)
{
switch (channels) {
case 8:
channel_map_init_vorbis(7, map);
map[5] = CHANNEL_POSITION_REAR_LEFT;
map[6] = CHANNEL_POSITION_REAR_RIGHT;
map[7] = CHANNEL_POSITION_LFE;
break;
case 7:
channel_map_init_vorbis(3, map);
map[3] = CHANNEL_POSITION_SIDE_LEFT;
map[4] = CHANNEL_POSITION_SIDE_RIGHT;
map[5] = CHANNEL_POSITION_REAR_CENTER;
map[6] = CHANNEL_POSITION_LFE;
break;
case 6:
map[5] = CHANNEL_POSITION_LFE;
/* Fall through */
case 5:
map[3] = CHANNEL_POSITION_REAR_LEFT;
map[4] = CHANNEL_POSITION_REAR_RIGHT;
/* Fall through */
case 3:
map[0] = CHANNEL_POSITION_FRONT_LEFT;
map[1] = CHANNEL_POSITION_CENTER;
map[2] = CHANNEL_POSITION_FRONT_RIGHT;
break;
case 4:
map[2] = CHANNEL_POSITION_REAR_LEFT;
map[3] = CHANNEL_POSITION_REAR_RIGHT;
/* Fall through */
case 2:
map[0] = CHANNEL_POSITION_FRONT_LEFT;
map[1] = CHANNEL_POSITION_FRONT_RIGHT;
break;
case 1:
map[0] = CHANNEL_POSITION_MONO;
break;
default:
map[0] = CHANNEL_POSITION_INVALID;
break;
}
}
static int vorbis_open(struct input_plugin_data *ip_data)
{
struct vorbis_private *priv;
vorbis_info *vi;
int rc;
priv = xnew(struct vorbis_private, 1);
priv->current_section = -1;
memset(&priv->vf, 0, sizeof(priv->vf));
rc = ov_open_callbacks(ip_data, &priv->vf, NULL, 0, callbacks);
if (rc != 0) {
d_print("ov_open failed: %d\n", rc);
free(priv);
/* ogg is a container format, so it is likely to contain
* something else if it isn't vorbis */
return -IP_ERROR_UNSUPPORTED_FILE_TYPE;
}
ip_data->private = priv;
vi = ov_info(&priv->vf, -1);
ip_data->sf = sf_rate(vi->rate) | sf_channels(vi->channels) | sf_bits(16) | sf_signed(1);
#ifdef WORDS_BIGENDIAN
ip_data->sf |= sf_bigendian(1);
#endif
channel_map_init_vorbis(vi->channels, ip_data->channel_map);
return 0;
}
static int vorbis_close(struct input_plugin_data *ip_data)
{
struct vorbis_private *priv;
int rc;
priv = ip_data->private;
/* this closes ip_data->fd! */
rc = ov_clear(&priv->vf);
ip_data->fd = -1;
if (rc)
d_print("ov_clear returned %d\n", rc);
free(priv);
ip_data->private = NULL;
return 0;
}
static inline int vorbis_endian(void)
{
#ifdef WORDS_BIGENDIAN
return 1;
#else
return 0;
#endif
}
/*
* OV_HOLE
* indicates there was an interruption in the data.
* (one of: garbage between pages, loss of sync followed by recapture,
* or a corrupt page)
* OV_EBADLINK
* indicates that an invalid stream section was supplied to libvorbisfile,
* or the requested link is corrupt.
* 0
* indicates EOF
* n
* indicates actual number of bytes read. ov_read() will decode at most
* one vorbis packet per invocation, so the value returned will generally
* be less than length.
*/
static int vorbis_read(struct input_plugin_data *ip_data, char *buffer, int count)
{
struct vorbis_private *priv;
int rc;
int current_section;
priv = ip_data->private;
#ifdef CONFIG_TREMOR
/* Tremor can only handle signed 16 bit data */
rc = ov_read(&priv->vf, buffer, count, ¤t_section);
#else
rc = ov_read(&priv->vf, buffer, count, vorbis_endian(), 2, 1, ¤t_section);
#endif
if (ip_data->remote && current_section != priv->current_section) {
ip_data->metadata_changed = 1;
priv->current_section = current_section;
}
switch (rc) {
case OV_HOLE:
errno = EAGAIN;
return -1;
case OV_EBADLINK:
errno = EINVAL;
return -1;
case OV_EINVAL:
errno = EINVAL;
return -1;
case 0:
if (errno) {
d_print("error: %s\n", strerror(errno));
return -1;
/* return -IP_ERROR_INTERNAL; */
}
/* EOF */
return 0;
default:
if (rc < 0) {
d_print("error: %d\n", rc);
rc = -IP_ERROR_FILE_FORMAT;
}
return rc;
}
}
static int vorbis_seek(struct input_plugin_data *ip_data, double offset)
{
struct vorbis_private *priv;
int rc;
priv = ip_data->private;
#ifdef CONFIG_TREMOR
rc = ov_time_seek(&priv->vf, offset * 1000);
#else
rc = ov_time_seek(&priv->vf, offset);
#endif
switch (rc) {
case OV_ENOSEEK:
return -IP_ERROR_FUNCTION_NOT_SUPPORTED;
case OV_EINVAL:
return -IP_ERROR_INTERNAL;
case OV_EREAD:
return -IP_ERROR_INTERNAL;
case OV_EFAULT:
return -IP_ERROR_INTERNAL;
case OV_EBADLINK:
return -IP_ERROR_INTERNAL;
}
return 0;
}
static int vorbis_read_comments(struct input_plugin_data *ip_data,
struct keyval **comments)
{
GROWING_KEYVALS(c);
struct vorbis_private *priv;
vorbis_comment *vc;
int i;
priv = ip_data->private;
vc = ov_comment(&priv->vf, -1);
if (vc == NULL) {
d_print("vc == NULL\n");
*comments = keyvals_new(0);
return 0;
}
for (i = 0; i < vc->comments; i++) {
const char *str = vc->user_comments[i];
const char *eq = strchr(str, '=');
char *key;
if (!eq) {
d_print("invalid comment: '%s' ('=' expected)\n", str);
continue;
}
key = xstrndup(str, eq - str);
comments_add_const(&c, key, eq + 1);
free(key);
}
keyvals_terminate(&c);
*comments = c.keyvals;
return 0;
}
static int vorbis_duration(struct input_plugin_data *ip_data)
{
struct vorbis_private *priv;
int duration;
priv = ip_data->private;
duration = ov_time_total(&priv->vf, -1);
if (duration == OV_EINVAL)
return -IP_ERROR_FUNCTION_NOT_SUPPORTED;
#ifdef CONFIG_TREMOR
duration = (duration + 500) / 1000;
#endif
return duration;
}
static long vorbis_bitrate(struct input_plugin_data *ip_data)
{
struct vorbis_private *priv = ip_data->private;
long bitrate = ov_bitrate(&priv->vf, -1);
if (bitrate == OV_EINVAL || bitrate == OV_FALSE)
return -IP_ERROR_FUNCTION_NOT_SUPPORTED;
return bitrate;
}
static long vorbis_current_bitrate(struct input_plugin_data *ip_data)
{
struct vorbis_private *priv = ip_data->private;
return ov_bitrate_instant(&priv->vf);
}
static char *vorbis_codec(struct input_plugin_data *ip_data)
{
return xstrdup("vorbis");
}
static const long rate_mapping_44[2][12] = {
{ 32000, 48000, 60000, 70000, 80000, 86000, 96000, 110000, 120000, 140000, 160000, 239920 },
{ 45000, 64000, 80000, 96000, 112000, 128000, 160000, 192000, 224000, 256000, 320000, 499821 }
};
static char *vorbis_codec_profile(struct input_plugin_data *ip_data)
{
struct vorbis_private *priv = ip_data->private;
vorbis_info *vi = ov_info(&priv->vf, -1);
long b = vi->bitrate_nominal;
char buf[64];
if (b <= 0)
return NULL;
if (vi->channels > 2 || vi->rate < 44100) {
sprintf(buf, "%ldkbps", b / 1000);
} else {
const long *map = rate_mapping_44[vi->channels - 1];
float q;
int i;
for (i = 0; i < 12-1; i++) {
if (b >= map[i] && b < map[i+1])
break;
}
/* This is used even if upper / lower bitrate are set
* because it gives a good approximation. */
q = (i - 1) + (float) (b - map[i]) / (map[i+1] - map[i]);
sprintf(buf, "q%g", roundf(q * 100.f) / 100.f);
}
return xstrdup(buf);
}
const struct input_plugin_ops ip_ops = {
.open = vorbis_open,
.close = vorbis_close,
.read = vorbis_read,
.seek = vorbis_seek,
.read_comments = vorbis_read_comments,
.duration = vorbis_duration,
.bitrate = vorbis_bitrate,
.bitrate_current = vorbis_current_bitrate,
.codec = vorbis_codec,
.codec_profile = vorbis_codec_profile
};
const int ip_priority = 50;
const char * const ip_extensions[] = { "ogg", "oga", "ogx", NULL };
const char * const ip_mime_types[] = { "application/ogg", "audio/x-ogg", NULL };
const char * const ip_options[] = { NULL };