VorbisDecoderPlugin.cxx 8.79 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 206 207 208 209 210 211 212 213 214
gcc_pure
static SignedSongTime
vorbis_duration(OggVorbis_File &vf)
{
	auto total = ov_time_total(&vf, -1);
	return total >= 0
		? SignedSongTime::FromS(total)
		: SignedSongTime::Negative();
}

215
static void
216
vorbis_stream_decode(Decoder &decoder,
217
		     InputStream &input_stream)
Warren Dukes's avatar
Warren Dukes committed
218
{
219
	if (ogg_codec_detect(&decoder, input_stream) != OGG_CODEC_VORBIS)
220
		return;
221

222
	/* rewind the stream, because ogg_codec_detect() has
223
	   moved it */
224
	input_stream.LockRewind(IgnoreError());
225

226
	VorbisInputStream vis(&decoder, input_stream);
227
	OggVorbis_File vf;
228
	if (!vorbis_is_open(&vis, &vf))
229
		return;
Warren Dukes's avatar
Warren Dukes committed
230

231
	const vorbis_info *vi = ov_info(&vf, -1);
232
	if (vi == nullptr) {
233
		LogWarning(vorbis_domain, "ov_info() has failed");
234 235 236
		return;
	}

237
	Error error;
238 239
	AudioFormat audio_format;
	if (!audio_format_init_checked(audio_format, vi->rate,
240
#ifdef HAVE_TREMOR
241
				       SampleFormat::S16,
242
#else
243
				       SampleFormat::FLOAT,
244
#endif
245
				       vi->channels, error)) {
246
		LogError(error);
247 248 249
		return;
	}

250 251
	decoder_initialized(decoder, audio_format, vis.seekable,
			    vorbis_duration(vf));
252

253
#ifdef HAVE_TREMOR
254
	char buffer[4096];
255 256 257
#else
	float buffer[2048];
	const int frames_per_buffer =
258
		ARRAY_SIZE(buffer) / audio_format.channels;
259 260 261
	const unsigned frame_size = sizeof(buffer[0]) * audio_format.channels;
#endif

262
	int prev_section = -1;
263
	unsigned kbit_rate = 0;
264

265
	DecoderCommand cmd = decoder_get_command(decoder);
266
	do {
267
		if (cmd == DecoderCommand::SEEK) {
268 269
			auto seek_where = decoder_seek_where_frame(decoder);
			if (0 == ov_pcm_seek_page(&vf, seek_where)) {
270
				decoder_command_finished(decoder);
Avuton Olrich's avatar
Avuton Olrich committed
271
			} else
272
				decoder_seek_error(decoder);
Warren Dukes's avatar
Warren Dukes committed
273
		}
274

275
		int current_section;
276 277

#ifdef HAVE_TREMOR
278
		long nbytes = ov_read(&vf, buffer, sizeof(buffer),
279
				      IsBigEndian(), 2, 1,
280
				      &current_section);
281 282 283 284 285 286 287 288 289 290 291 292 293 294
#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

295 296 297
		if (nbytes == OV_HOLE) /* bad packet */
			nbytes = 0;
		else if (nbytes <= 0)
298 299 300
			/* break on EOF or other error */
			break;

Avuton Olrich's avatar
Avuton Olrich committed
301
		if (current_section != prev_section) {
302
			vi = ov_info(&vf, -1);
303
			if (vi == nullptr) {
304 305
				LogWarning(vorbis_domain,
					   "ov_info() has failed");
306 307 308
				break;
			}

309 310
			if (vi->rate != (long)audio_format.sample_rate ||
			    vi->channels != (int)audio_format.channels) {
311 312
				/* we don't support audio format
				   change yet */
313 314
				LogWarning(vorbis_domain,
					   "audio format change, stopping here");
315
				break;
Warren Dukes's avatar
Warren Dukes committed
316
			}
317

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

321 322
			ReplayGainInfo rgi;
			if (vorbis_comments_to_replay_gain(rgi, comments))
323
				decoder_replay_gain(decoder, &rgi);
Warren Dukes's avatar
Warren Dukes committed
324

325 326
			prev_section = current_section;
		}
Warren Dukes's avatar
Warren Dukes committed
327

328 329
		long test = ov_bitrate_instant(&vf);
		if (test > 0)
330
			kbit_rate = test / 1000;
Warren Dukes's avatar
Warren Dukes committed
331

Max Kellermann's avatar
Max Kellermann committed
332
		cmd = decoder_data(decoder, input_stream,
333 334
				   buffer, nbytes,
				   kbit_rate);
335
	} while (cmd != DecoderCommand::STOP);
Warren Dukes's avatar
Warren Dukes committed
336

Warren Dukes's avatar
Warren Dukes committed
337
	ov_clear(&vf);
Warren Dukes's avatar
Warren Dukes committed
338 339
}

340
static bool
341
vorbis_scan_stream(InputStream &is,
342
		   const struct tag_handler *handler, void *handler_ctx)
Avuton Olrich's avatar
Avuton Olrich committed
343
{
344
	VorbisInputStream vis(nullptr, is);
Warren Dukes's avatar
Warren Dukes committed
345 346
	OggVorbis_File vf;

347
	if (!vorbis_is_open(&vis, &vf))
348
		return false;
Warren Dukes's avatar
Warren Dukes committed
349

350 351 352 353
	const auto total = ov_time_total(&vf, -1);
	if (total >= 0)
		tag_handler_invoke_duration(handler, handler_ctx,
					    SongTime::FromS(total));
Warren Dukes's avatar
Warren Dukes committed
354

355 356
	vorbis_comments_scan(ov_comment(&vf, -1)->user_comments,
			     handler, handler_ctx);
Warren Dukes's avatar
Warren Dukes committed
357 358

	ov_clear(&vf);
359
	return true;
Warren Dukes's avatar
Warren Dukes committed
360 361
}

Max Kellermann's avatar
Max Kellermann committed
362
static const char *const vorbis_suffixes[] = {
363
	"ogg", "oga", nullptr
Max Kellermann's avatar
Max Kellermann committed
364 365 366
};

static const char *const vorbis_mime_types[] = {
367 368
	"application/ogg",
	"application/x-ogg",
369 370 371 372 373 374
	"audio/ogg",
	"audio/vorbis",
	"audio/vorbis+ogg",
	"audio/x-ogg",
	"audio/x-vorbis",
	"audio/x-vorbis+ogg",
375
	nullptr
376
};
Warren Dukes's avatar
Warren Dukes committed
377

378
const struct DecoderPlugin vorbis_decoder_plugin = {
379
	"vorbis",
380
	vorbis_init,
381 382 383 384 385 386 387 388
	nullptr,
	vorbis_stream_decode,
	nullptr,
	nullptr,
	vorbis_scan_stream,
	nullptr,
	vorbis_suffixes,
	vorbis_mime_types
Warren Dukes's avatar
Warren Dukes committed
389
};