VorbisDecoderPlugin.cxx 8.61 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2014 The Music Player Daemon Project
3
 * http://www.musicpd.org
Warren Dukes's avatar
Warren Dukes committed
4 5 6 7 8 9 10 11 12 13
 *
 * 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.
14 15 16 17
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Warren Dukes's avatar
Warren Dukes committed
18 19
 */

20
#include "config.h"
21 22
#include "VorbisDecoderPlugin.h"
#include "VorbisComments.hxx"
23
#include "VorbisDomain.hxx"
24
#include "../DecoderAPI.hxx"
Max Kellermann's avatar
Max Kellermann committed
25
#include "input/InputStream.hxx"
26
#include "OggCodec.hxx"
27
#include "util/Error.hxx"
28
#include "util/Macros.hxx"
29
#include "CheckAudioFormat.hxx"
30
#include "tag/TagHandler.hxx"
31
#include "Log.hxx"
32 33

#ifndef HAVE_TREMOR
34
#define OV_EXCLUDE_STATIC_CALLBACKS
Warren Dukes's avatar
Warren Dukes committed
35
#include <vorbis/vorbisfile.h>
36 37 38 39
#else
#include <tremor/ivorbisfile.h>
/* Macros to make Tremor's API look like libogg. Tremor always
   returns host-byte-order 16-bit signed data, and uses integer
40
   milliseconds where libogg uses double seconds.
41 42 43 44 45 46
*/
#define ov_read(VF, BUFFER, LENGTH, BIGENDIANP, WORD, SGNED, BITSTREAM) \
        ov_read(VF, BUFFER, LENGTH, BITSTREAM)
#define ov_time_total(VF, I) ((double)ov_time_total(VF, I)/1000)
#define ov_time_tell(VF) ((double)ov_time_tell(VF)/1000)
#define ov_time_seek_page(VF, S) (ov_time_seek_page(VF, (S)*1000))
Avuton Olrich's avatar
Avuton Olrich committed
47
#endif /* HAVE_TREMOR */
48

49 50
#include <errno.h>

51
struct VorbisInputStream {
52
	Decoder *const decoder;
53

54
	InputStream &input_stream;
55
	bool seekable;
56 57

	VorbisInputStream(Decoder *_decoder, InputStream &_is)
58 59
		:decoder(_decoder), input_stream(_is),
		 seekable(input_stream.CheapSeeking()) {}
60
};
61

62
static size_t ogg_read_cb(void *ptr, size_t size, size_t nmemb, void *data)
63
{
64
	VorbisInputStream *vis = (VorbisInputStream *)data;
65
	size_t ret = decoder_read(vis->decoder, vis->input_stream,
66
				  ptr, size * nmemb);
Max Kellermann's avatar
Max Kellermann committed
67

Avuton Olrich's avatar
Avuton Olrich committed
68
	errno = 0;
69

Max Kellermann's avatar
Max Kellermann committed
70
	return ret / size;
71 72
}

73
static int ogg_seek_cb(void *data, ogg_int64_t _offset, int whence)
Avuton Olrich's avatar
Avuton Olrich committed
74
{
75
	VorbisInputStream *vis = (VorbisInputStream *)data;
76
	InputStream &is = vis->input_stream;
77

78 79 80 81 82
	if (!vis->seekable ||
	    (vis->decoder != nullptr &&
	     decoder_get_command(*vis->decoder) == DecoderCommand::STOP))
		return -1;

83
	offset_type offset = _offset;
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
	switch (whence) {
	case SEEK_SET:
		break;

	case SEEK_CUR:
		offset += is.GetOffset();
		break;

	case SEEK_END:
		if (!is.KnownSize())
			return -1;

		offset += is.GetSize();
		break;

	default:
		return -1;
	}

	return is.LockSeek(offset, IgnoreError())
104
		? 0 : -1;
105 106
}

107
/* TODO: check Ogg libraries API and see if we can just not have this func */
108
static int ogg_close_cb(gcc_unused void *data)
Avuton Olrich's avatar
Avuton Olrich committed
109
{
110
	return 0;
111 112
}

113
static long ogg_tell_cb(void *data)
Avuton Olrich's avatar
Avuton Olrich committed
114
{
115
	VorbisInputStream *vis = (VorbisInputStream *)data;
116

117
	return (long)vis->input_stream.GetOffset();
118 119
}

120
static const ov_callbacks vorbis_is_callbacks = {
121 122 123 124
	ogg_read_cb,
	ogg_seek_cb,
	ogg_close_cb,
	ogg_tell_cb,
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
static const char *
vorbis_strerror(int code)
{
	switch (code) {
	case OV_EREAD:
		return "read error";

	case OV_ENOTVORBIS:
		return "not vorbis stream";

	case OV_EVERSION:
		return "vorbis version mismatch";

	case OV_EBADHEADER:
		return "invalid vorbis header";

	case OV_EFAULT:
		return "internal logic error";

	default:
		return "unknown error";
	}
}

151
static bool
152
vorbis_is_open(VorbisInputStream *vis, OggVorbis_File *vf)
153
{
154
	int ret = ov_open_callbacks(vis, vf, nullptr, 0, vorbis_is_callbacks);
155
	if (ret < 0) {
156 157
		if (vis->decoder == nullptr ||
		    decoder_get_command(*vis->decoder) == DecoderCommand::NONE)
158 159 160
			FormatWarning(vorbis_domain,
				      "Failed to open Ogg Vorbis stream: %s",
				      vorbis_strerror(ret));
161 162 163 164 165 166
		return false;
	}

	return true;
}

Max Kellermann's avatar
Max Kellermann committed
167
static void
168
vorbis_send_comments(Decoder &decoder, InputStream &is,
Max Kellermann's avatar
Max Kellermann committed
169
		     char **comments)
170
{
Max Kellermann's avatar
Max Kellermann committed
171
	Tag *tag = vorbis_comments_to_tag(comments);
Avuton Olrich's avatar
Avuton Olrich committed
172 173
	if (!tag)
		return;
174

175
	decoder_tag(decoder, is, std::move(*tag));
Max Kellermann's avatar
Max Kellermann committed
176
	delete tag;
177 178
}

179 180 181 182 183 184 185
#ifndef HAVE_TREMOR
static void
vorbis_interleave(float *dest, const float *const*src,
		  unsigned nframes, unsigned channels)
{
	for (const float *const*src_end = src + channels;
	     src != src_end; ++src, ++dest) {
186 187
		float *gcc_restrict d = dest;
		for (const float *gcc_restrict s = *src, *s_end = s + nframes;
188 189 190 191 192 193
		     s != s_end; ++s, d += channels)
			*d = *s;
	}
}
#endif

194
/* public */
195 196 197 198 199 200 201 202 203 204

static bool
vorbis_init(gcc_unused const config_param &param)
{
#ifndef HAVE_TREMOR
	LogDebug(vorbis_domain, vorbis_version_string());
#endif
	return true;
}

205
static void
206
vorbis_stream_decode(Decoder &decoder,
207
		     InputStream &input_stream)
Warren Dukes's avatar
Warren Dukes committed
208
{
209
	if (ogg_codec_detect(&decoder, input_stream) != OGG_CODEC_VORBIS)
210
		return;
211

212
	/* rewind the stream, because ogg_codec_detect() has
213
	   moved it */
214
	input_stream.LockRewind(IgnoreError());
215

216
	VorbisInputStream vis(&decoder, input_stream);
217
	OggVorbis_File vf;
218
	if (!vorbis_is_open(&vis, &vf))
219
		return;
Warren Dukes's avatar
Warren Dukes committed
220

221
	const vorbis_info *vi = ov_info(&vf, -1);
222
	if (vi == nullptr) {
223
		LogWarning(vorbis_domain, "ov_info() has failed");
224 225 226
		return;
	}

227
	Error error;
228 229
	AudioFormat audio_format;
	if (!audio_format_init_checked(audio_format, vi->rate,
230
#ifdef HAVE_TREMOR
231
				       SampleFormat::S16,
232
#else
233
				       SampleFormat::FLOAT,
234
#endif
235
				       vi->channels, error)) {
236
		LogError(error);
237 238 239
		return;
	}

240
	float total_time = ov_time_total(&vf, -1);
241 242 243
	if (total_time < 0)
		total_time = 0;

244
	decoder_initialized(decoder, audio_format, vis.seekable, total_time);
245

246
#ifdef HAVE_TREMOR
247
	char buffer[4096];
248 249 250
#else
	float buffer[2048];
	const int frames_per_buffer =
251
		ARRAY_SIZE(buffer) / audio_format.channels;
252 253 254
	const unsigned frame_size = sizeof(buffer[0]) * audio_format.channels;
#endif

255
	int prev_section = -1;
256
	unsigned kbit_rate = 0;
257

258
	DecoderCommand cmd = decoder_get_command(decoder);
259
	do {
260
		if (cmd == DecoderCommand::SEEK) {
261 262 263
			double seek_where = decoder_seek_where(decoder);
			if (0 == ov_time_seek_page(&vf, seek_where)) {
				decoder_command_finished(decoder);
Avuton Olrich's avatar
Avuton Olrich committed
264
			} else
265
				decoder_seek_error(decoder);
Warren Dukes's avatar
Warren Dukes committed
266
		}
267

268
		int current_section;
269 270

#ifdef HAVE_TREMOR
271
		long nbytes = ov_read(&vf, buffer, sizeof(buffer),
272
				      IsBigEndian(), 2, 1,
273
				      &current_section);
274 275 276 277 278 279 280 281 282 283 284 285 286 287
#else
		float **per_channel;
		long nframes = ov_read_float(&vf, &per_channel,
					     frames_per_buffer,
					     &current_section);
		long nbytes = nframes;
		if (nframes > 0) {
			vorbis_interleave(buffer,
					  (const float*const*)per_channel,
					  nframes, audio_format.channels);
			nbytes *= frame_size;
		}
#endif

288 289 290
		if (nbytes == OV_HOLE) /* bad packet */
			nbytes = 0;
		else if (nbytes <= 0)
291 292 293
			/* break on EOF or other error */
			break;

Avuton Olrich's avatar
Avuton Olrich committed
294
		if (current_section != prev_section) {
295
			vi = ov_info(&vf, -1);
296
			if (vi == nullptr) {
297 298
				LogWarning(vorbis_domain,
					   "ov_info() has failed");
299 300 301
				break;
			}

302 303
			if (vi->rate != (long)audio_format.sample_rate ||
			    vi->channels != (int)audio_format.channels) {
304 305
				/* we don't support audio format
				   change yet */
306 307
				LogWarning(vorbis_domain,
					   "audio format change, stopping here");
308
				break;
Warren Dukes's avatar
Warren Dukes committed
309
			}
310

311
			char **comments = ov_comment(&vf, -1)->user_comments;
Max Kellermann's avatar
Max Kellermann committed
312
			vorbis_send_comments(decoder, input_stream, comments);
313

314 315
			ReplayGainInfo rgi;
			if (vorbis_comments_to_replay_gain(rgi, comments))
316
				decoder_replay_gain(decoder, &rgi);
Warren Dukes's avatar
Warren Dukes committed
317

318 319
			prev_section = current_section;
		}
Warren Dukes's avatar
Warren Dukes committed
320

321 322
		long test = ov_bitrate_instant(&vf);
		if (test > 0)
323
			kbit_rate = test / 1000;
Warren Dukes's avatar
Warren Dukes committed
324

Max Kellermann's avatar
Max Kellermann committed
325
		cmd = decoder_data(decoder, input_stream,
326 327
				   buffer, nbytes,
				   kbit_rate);
328
	} while (cmd != DecoderCommand::STOP);
Warren Dukes's avatar
Warren Dukes committed
329

Warren Dukes's avatar
Warren Dukes committed
330
	ov_clear(&vf);
Warren Dukes's avatar
Warren Dukes committed
331 332
}

333
static bool
334
vorbis_scan_stream(InputStream &is,
335
		   const struct tag_handler *handler, void *handler_ctx)
Avuton Olrich's avatar
Avuton Olrich committed
336
{
337
	VorbisInputStream vis(nullptr, is);
Warren Dukes's avatar
Warren Dukes committed
338 339
	OggVorbis_File vf;

340
	if (!vorbis_is_open(&vis, &vf))
341
		return false;
Warren Dukes's avatar
Warren Dukes committed
342

343 344
	tag_handler_invoke_duration(handler, handler_ctx,
				    (int)(ov_time_total(&vf, -1) + 0.5));
Warren Dukes's avatar
Warren Dukes committed
345

346 347
	vorbis_comments_scan(ov_comment(&vf, -1)->user_comments,
			     handler, handler_ctx);
Warren Dukes's avatar
Warren Dukes committed
348 349

	ov_clear(&vf);
350
	return true;
Warren Dukes's avatar
Warren Dukes committed
351 352
}

Max Kellermann's avatar
Max Kellermann committed
353
static const char *const vorbis_suffixes[] = {
354
	"ogg", "oga", nullptr
Max Kellermann's avatar
Max Kellermann committed
355 356 357
};

static const char *const vorbis_mime_types[] = {
358 359
	"application/ogg",
	"application/x-ogg",
360 361 362 363 364 365
	"audio/ogg",
	"audio/vorbis",
	"audio/vorbis+ogg",
	"audio/x-ogg",
	"audio/x-vorbis",
	"audio/x-vorbis+ogg",
366
	nullptr
367
};
Warren Dukes's avatar
Warren Dukes committed
368

369
const struct DecoderPlugin vorbis_decoder_plugin = {
370
	"vorbis",
371
	vorbis_init,
372 373 374 375 376 377 378 379
	nullptr,
	vorbis_stream_decode,
	nullptr,
	nullptr,
	vorbis_scan_stream,
	nullptr,
	vorbis_suffixes,
	vorbis_mime_types
Warren Dukes's avatar
Warren Dukes committed
380
};