Mpg123DecoderPlugin.cxx 7.68 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 * http://www.musicpd.org
 *
 * 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, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

20
#include "config.h" /* must be first for large file support */
21
#include "Mpg123DecoderPlugin.hxx"
22
#include "../DecoderAPI.hxx"
23
#include "CheckAudioFormat.hxx"
24
#include "tag/TagHandler.hxx"
25 26 27
#include "tag/TagBuilder.hxx"
#include "tag/ReplayGain.hxx"
#include "tag/MixRamp.hxx"
28
#include "fs/Path.hxx"
29
#include "util/Domain.hxx"
30
#include "util/StringView.hxx"
31
#include "Log.hxx"
32 33

#include <mpg123.h>
34

35
#include <stdio.h>
36

37
static constexpr Domain mpg123_domain("mpg123");
38 39

static bool
40
mpd_mpg123_init(gcc_unused const ConfigBlock &block)
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
{
	mpg123_init();

	return true;
}

static void
mpd_mpg123_finish(void)
{
	mpg123_exit();
}

/**
 * Opens a file with an existing #mpg123_handle.
 *
 * @param handle a handle which was created before; on error, this
 * function will not free it
 * @param audio_format this parameter is filled after successful
 * return
 * @return true on success
 */
static bool
mpd_mpg123_open(mpg123_handle *handle, const char *path_fs,
64
		AudioFormat &audio_format)
65 66
{
	/* mpg123_open() wants a writable string :-( */
67
	char *const path2 = const_cast<char *>(path_fs);
68

69
	int error = mpg123_open(handle, path2);
70
	if (error != MPG123_OK) {
71 72 73
		FormatWarning(mpg123_domain,
			      "libmpg123 failed to open %s: %s",
			      path_fs, mpg123_plain_strerror(error));
74 75 76 77 78
		return false;
	}

	/* obtain the audio format */

79 80
	long rate;
	int channels, encoding;
81 82
	error = mpg123_getformat(handle, &rate, &channels, &encoding);
	if (error != MPG123_OK) {
83 84 85
		FormatWarning(mpg123_domain,
			      "mpg123_getformat() failed: %s",
			      mpg123_plain_strerror(error));
86 87 88 89 90
		return false;
	}

	if (encoding != MPG123_ENC_SIGNED_16) {
		/* other formats not yet implemented */
91 92 93
		FormatWarning(mpg123_domain,
			      "expected MPG123_ENC_SIGNED_16, got %d",
			      encoding);
94 95 96
		return false;
	}

97
	audio_format = CheckAudioFormat(rate, SampleFormat::S16, channels);
98 99 100
	return true;
}

101 102 103 104 105 106 107
static void
AddTagItem(TagBuilder &tag, TagType type, const mpg123_string &s)
{
	assert(s.p != nullptr);
	assert(s.size >= s.fill);
	assert(s.fill > 0);

108
	tag.AddItem(type, {s.p, s.fill - 1});
109 110 111 112 113 114 115 116 117 118
}

static void
AddTagItem(TagBuilder &tag, TagType type, const mpg123_string *s)
{
	if (s != nullptr)
		AddTagItem(tag, type, *s);
}

static void
119
mpd_mpg123_id3v2_tag(DecoderClient &client, const mpg123_id3v2 &id3v2)
120 121 122 123 124 125 126 127 128 129 130 131
{
	TagBuilder tag;

	AddTagItem(tag, TAG_TITLE, id3v2.title);
	AddTagItem(tag, TAG_ARTIST, id3v2.artist);
	AddTagItem(tag, TAG_ALBUM, id3v2.album);
	AddTagItem(tag, TAG_DATE, id3v2.year);
	AddTagItem(tag, TAG_GENRE, id3v2.genre);

	for (size_t i = 0, n = id3v2.comments; i < n; ++i)
		AddTagItem(tag, TAG_COMMENT, id3v2.comment_list[i].text);

132
	client.SubmitTag(nullptr, tag.Commit());
133 134 135
}

static void
136
mpd_mpg123_id3v2_extras(DecoderClient &client, const mpg123_id3v2 &id3v2)
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
{
	ReplayGainInfo replay_gain;
	replay_gain.Clear();

	MixRampInfo mix_ramp;

	bool found_replay_gain = false, found_mixramp = false;

	for (size_t i = 0, n = id3v2.extras; i < n; ++i) {
		if (ParseReplayGainTag(replay_gain,
				       id3v2.extra[i].description.p,
				       id3v2.extra[i].text.p))
			found_replay_gain = true;
		else if (ParseMixRampTag(mix_ramp,
					 id3v2.extra[i].description.p,
					 id3v2.extra[i].text.p))
			found_mixramp = true;
	}

	if (found_replay_gain)
157
		client.SubmitReplayGain(&replay_gain);
158 159

	if (found_mixramp)
160
		client.SubmitMixRamp(std::move(mix_ramp));
161 162 163
}

static void
164
mpd_mpg123_id3v2(DecoderClient &client, const mpg123_id3v2 &id3v2)
165
{
166 167
	mpd_mpg123_id3v2_tag(client, id3v2);
	mpd_mpg123_id3v2_extras(client, id3v2);
168 169 170
}

static void
171
mpd_mpg123_meta(DecoderClient &client, mpg123_handle *const handle)
172 173 174 175 176 177 178 179 180 181
{
	if ((mpg123_meta_check(handle) & MPG123_NEW_ID3) == 0)
		return;

	mpg123_id3v1 *v1;
	mpg123_id3v2 *v2;
	if (mpg123_id3(handle, &v1, &v2) != MPG123_OK)
		return;

	if (v2 != nullptr)
182
		mpd_mpg123_id3v2(client, *v2);
183 184
}

185
static void
186
mpd_mpg123_file_decode(DecoderClient &client, Path path_fs)
187 188 189
{
	/* open the file */

190 191
	int error;
	mpg123_handle *const handle = mpg123_new(nullptr, &error);
192
	if (handle == nullptr) {
193 194 195
		FormatError(mpg123_domain,
			    "mpg123_new() failed: %s",
			    mpg123_plain_strerror(error));
196 197 198
		return;
	}

199
	AudioFormat audio_format;
200
	if (!mpd_mpg123_open(handle, path_fs.c_str(), audio_format)) {
201 202 203 204
		mpg123_delete(handle);
		return;
	}

205
	const off_t num_samples = mpg123_length(handle);
206 207 208

	/* tell MPD core we're ready */

209 210 211 212
	const auto duration =
		SongTime::FromScale<uint64_t>(num_samples,
					      audio_format.sample_rate);

213
	client.Ready(audio_format, true, duration);
214

215
	struct mpg123_frameinfo info;
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
	if (mpg123_info(handle, &info) != MPG123_OK) {
		info.vbr = MPG123_CBR;
		info.bitrate = 0;
	}

	switch (info.vbr) {
	case MPG123_ABR:
		info.bitrate = info.abr_rate;
		break;
	case MPG123_CBR:
		break;
	default:
		info.bitrate = 0;
	}

231
	/* the decoder main loop */
232
	DecoderCommand cmd;
233
	do {
234
		/* read metadata */
235
		mpd_mpg123_meta(client, handle);
236

237 238
		/* decode */

239 240
		unsigned char buffer[8192];
		size_t nbytes;
241 242 243
		error = mpg123_read(handle, buffer, sizeof(buffer), &nbytes);
		if (error != MPG123_OK) {
			if (error != MPG123_DONE)
244 245 246
				FormatWarning(mpg123_domain,
					      "mpg123_read() failed: %s",
					      mpg123_plain_strerror(error));
247 248 249
			break;
		}

250 251 252 253 254 255 256 257
		/* update bitrate for ABR/VBR */
		if (info.vbr != MPG123_CBR) {
			/* FIXME: maybe skip, as too expensive? */
			/* FIXME: maybe, (info.vbr == MPG123_VBR) ? */
			if (mpg123_info (handle, &info) != MPG123_OK)
				info.bitrate = 0;
		}

258 259
		/* send to MPD */

260
		cmd = client.SubmitData(nullptr, buffer, nbytes, info.bitrate);
261

262
		if (cmd == DecoderCommand::SEEK) {
263
			off_t c = client.GetSeekFrame();
264 265
			c = mpg123_seek(handle, c, SEEK_SET);
			if (c < 0)
266
				client.SeekError();
267
			else {
268
				client.CommandFinished();
269
				client.SubmitTimestamp(c / (double)audio_format.sample_rate);
270 271
			}

272
			cmd = DecoderCommand::NONE;
273
		}
274
	} while (cmd == DecoderCommand::NONE);
275 276 277 278 279 280

	/* cleanup */

	mpg123_delete(handle);
}

281
static bool
282
mpd_mpg123_scan_file(Path path_fs,
283
		     const TagHandler &handler, void *handler_ctx)
284 285
{
	int error;
286
	mpg123_handle *const handle = mpg123_new(nullptr, &error);
287
	if (handle == nullptr) {
288 289 290
		FormatError(mpg123_domain,
			    "mpg123_new() failed: %s",
			    mpg123_plain_strerror(error));
291
		return false;
292 293
	}

294
	AudioFormat audio_format;
295
	if (!mpd_mpg123_open(handle, path_fs.c_str(), audio_format)) {
296
		mpg123_delete(handle);
297
		return false;
298 299
	}

300
	const off_t num_samples = mpg123_length(handle);
301 302
	if (num_samples <= 0) {
		mpg123_delete(handle);
303
		return false;
304 305 306 307 308
	}

	/* ID3 tag support not yet implemented */

	mpg123_delete(handle);
309

310 311 312 313 314
	const auto duration =
		SongTime::FromScale<uint64_t>(num_samples,
					      audio_format.sample_rate);

	tag_handler_invoke_duration(handler, handler_ctx, duration);
315
	return true;
316 317 318 319
}

static const char *const mpg123_suffixes[] = {
	"mp3",
320
	nullptr
321 322
};

323
const struct DecoderPlugin mpg123_decoder_plugin = {
324 325 326
	"mpg123",
	mpd_mpg123_init,
	mpd_mpg123_finish,
327
	/* streaming not yet implemented */
328 329 330 331 332 333 334
	nullptr,
	mpd_mpg123_file_decode,
	mpd_mpg123_scan_file,
	nullptr,
	nullptr,
	mpg123_suffixes,
	nullptr,
335
};