Mpg123DecoderPlugin.cxx 7.5 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2019 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 "Mpg123DecoderPlugin.hxx"
21
#include "../DecoderAPI.hxx"
22
#include "CheckAudioFormat.hxx"
23 24
#include "tag/Handler.hxx"
#include "tag/Builder.hxx"
25 26
#include "tag/ReplayGain.hxx"
#include "tag/MixRamp.hxx"
27
#include "fs/Path.hxx"
28
#include "util/Domain.hxx"
29
#include "util/ScopeExit.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
{
	mpg123_init();

	return true;
}

static void
48
mpd_mpg123_finish() noexcept
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
{
	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
	int error = mpg123_open(handle, path_fs);
67
	if (error != MPG123_OK) {
68 69 70
		FormatWarning(mpg123_domain,
			      "libmpg123 failed to open %s: %s",
			      path_fs, mpg123_plain_strerror(error));
71 72 73 74 75
		return false;
	}

	/* obtain the audio format */

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

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

94
	audio_format = CheckAudioFormat(rate, SampleFormat::S16, channels);
95 96 97
	return true;
}

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

105
	tag.AddItem(type, {s.p, s.fill - 1});
106 107 108 109 110 111 112 113 114 115
}

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

static void
116
mpd_mpg123_id3v2_tag(DecoderClient &client, const mpg123_id3v2 &id3v2)
117 118 119 120 121 122 123 124 125 126 127 128
{
	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);

129
	client.SubmitTag(nullptr, tag.Commit());
130 131 132
}

static void
133
mpd_mpg123_id3v2_extras(DecoderClient &client, const mpg123_id3v2 &id3v2)
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
{
	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)
154
		client.SubmitReplayGain(&replay_gain);
155 156

	if (found_mixramp)
157
		client.SubmitMixRamp(std::move(mix_ramp));
158 159 160
}

static void
161
mpd_mpg123_id3v2(DecoderClient &client, const mpg123_id3v2 &id3v2)
162
{
163 164
	mpd_mpg123_id3v2_tag(client, id3v2);
	mpd_mpg123_id3v2_extras(client, id3v2);
165 166 167
}

static void
168
mpd_mpg123_meta(DecoderClient &client, mpg123_handle *const handle)
169 170 171 172 173 174 175 176 177 178
{
	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)
179
		mpd_mpg123_id3v2(client, *v2);
180 181
}

182
static void
183
mpd_mpg123_file_decode(DecoderClient &client, Path path_fs)
184 185 186
{
	/* open the file */

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

196 197
	AtScopeExit(handle) { mpg123_delete(handle); };

198
	AudioFormat audio_format;
199
	if (!mpd_mpg123_open(handle, path_fs.c_str(), audio_format))
200 201
		return;

202
	const off_t num_samples = mpg123_length(handle);
203 204 205

	/* tell MPD core we're ready */

206 207 208 209
	const auto duration =
		SongTime::FromScale<uint64_t>(num_samples,
					      audio_format.sample_rate);

210
	client.Ready(audio_format, true, duration);
211

212
	struct mpg123_frameinfo info;
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
	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;
	}

228
	/* the decoder main loop */
229
	DecoderCommand cmd;
230
	do {
231
		/* read metadata */
232
		mpd_mpg123_meta(client, handle);
233

234 235
		/* decode */

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

247 248 249 250 251 252 253 254
		/* 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;
		}

255 256
		/* send to MPD */

257
		cmd = client.SubmitData(nullptr, buffer, nbytes, info.bitrate);
258

259
		if (cmd == DecoderCommand::SEEK) {
260
			off_t c = client.GetSeekFrame();
261 262
			c = mpg123_seek(handle, c, SEEK_SET);
			if (c < 0)
263
				client.SeekError();
264
			else {
265
				client.CommandFinished();
266
				client.SubmitTimestamp(audio_format.FramesToTime<FloatDuration>(c));
267 268
			}

269
			cmd = DecoderCommand::NONE;
270
		}
271
	} while (cmd == DecoderCommand::NONE);
272 273
}

274
static bool
275
mpd_mpg123_scan_file(Path path_fs, TagHandler &handler) noexcept
276 277
{
	int error;
278
	mpg123_handle *const handle = mpg123_new(nullptr, &error);
279
	if (handle == nullptr) {
280 281 282
		FormatError(mpg123_domain,
			    "mpg123_new() failed: %s",
			    mpg123_plain_strerror(error));
283
		return false;
284 285
	}

286 287
	AtScopeExit(handle) { mpg123_delete(handle); };

288
	AudioFormat audio_format;
289 290 291 292 293
	try {
		if (!mpd_mpg123_open(handle, path_fs.c_str(), audio_format)) {
			return false;
		}
	} catch (...) {
294
		return false;
295 296
	}

297
	const off_t num_samples = mpg123_length(handle);
298
	if (num_samples <= 0) {
299
		return false;
300 301
	}

302 303
	handler.OnAudioFormat(audio_format);

304 305
	/* ID3 tag support not yet implemented */

306 307 308 309
	const auto duration =
		SongTime::FromScale<uint64_t>(num_samples,
					      audio_format.sample_rate);

310
	handler.OnDuration(duration);
311
	return true;
312 313 314 315
}

static const char *const mpg123_suffixes[] = {
	"mp3",
316
	nullptr
317 318
};

319 320 321 322
constexpr DecoderPlugin mpg123_decoder_plugin =
	DecoderPlugin("mpg123", mpd_mpg123_file_decode, mpd_mpg123_scan_file)
	.WithInit(mpd_mpg123_init, mpd_mpg123_finish)
	.WithSuffixes(mpg123_suffixes);