Mpg123DecoderPlugin.cxx 5.72 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2014 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
#include "fs/Path.hxx"
26
#include "util/Error.hxx"
27 28
#include "util/Domain.hxx"
#include "Log.hxx"
29 30

#include <mpg123.h>
31

32
#include <stdio.h>
33

34
static constexpr Domain mpg123_domain("mpg123");
35 36

static bool
37
mpd_mpg123_init(gcc_unused const config_param &param)
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
{
	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,
61
		AudioFormat &audio_format)
62 63 64 65 66 67
{
	int error;
	int channels, encoding;
	long rate;

	/* mpg123_open() wants a writable string :-( */
68
	char *const path2 = const_cast<char *>(path_fs);
69

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

	/* obtain the audio format */

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

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

96
	Error error2;
97
	if (!audio_format_init_checked(audio_format, rate, SampleFormat::S16,
98
				       channels, error2)) {
99
		LogError(error2);
100 101 102 103 104 105 106
		return false;
	}

	return true;
}

static void
107
mpd_mpg123_file_decode(Decoder &decoder, Path path_fs)
108 109 110
{
	mpg123_handle *handle;
	int error;
111
	off_t num_samples;
112
	struct mpg123_frameinfo info;
113 114 115

	/* open the file */

116 117
	handle = mpg123_new(nullptr, &error);
	if (handle == nullptr) {
118 119 120
		FormatError(mpg123_domain,
			    "mpg123_new() failed: %s",
			    mpg123_plain_strerror(error));
121 122 123
		return;
	}

124
	AudioFormat audio_format;
125
	if (!mpd_mpg123_open(handle, path_fs.c_str(), audio_format)) {
126 127 128 129 130 131 132 133
		mpg123_delete(handle);
		return;
	}

	num_samples = mpg123_length(handle);

	/* tell MPD core we're ready */

134
	decoder_initialized(decoder, audio_format, true,
135 136 137
			    (float)num_samples /
			    (float)audio_format.sample_rate);

138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
	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;
	}

153 154
	/* the decoder main loop */

155
	DecoderCommand cmd;
156 157 158 159 160 161 162 163 164
	do {
		unsigned char buffer[8192];
		size_t nbytes;

		/* decode */

		error = mpg123_read(handle, buffer, sizeof(buffer), &nbytes);
		if (error != MPG123_OK) {
			if (error != MPG123_DONE)
165 166 167
				FormatWarning(mpg123_domain,
					      "mpg123_read() failed: %s",
					      mpg123_plain_strerror(error));
168 169 170
			break;
		}

171 172 173 174 175 176 177 178
		/* 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;
		}

179 180
		/* send to MPD */

181
		cmd = decoder_data(decoder, nullptr, buffer, nbytes, info.bitrate);
182

183
		if (cmd == DecoderCommand::SEEK) {
184 185 186 187 188 189 190 191 192
			off_t c = decoder_seek_where(decoder)*audio_format.sample_rate;
			c = mpg123_seek(handle, c, SEEK_SET);
			if (c < 0)
				decoder_seek_error(decoder);
			else {
				decoder_command_finished(decoder);
				decoder_timestamp(decoder, c/(double)audio_format.sample_rate);
			}

193
			cmd = DecoderCommand::NONE;
194
		}
195
	} while (cmd == DecoderCommand::NONE);
196 197 198 199 200 201

	/* cleanup */

	mpg123_delete(handle);
}

202
static bool
203
mpd_mpg123_scan_file(Path path_fs,
204
		     const struct tag_handler *handler, void *handler_ctx)
205 206 207 208 209
{
	mpg123_handle *handle;
	int error;
	off_t num_samples;

210 211
	handle = mpg123_new(nullptr, &error);
	if (handle == nullptr) {
212 213 214
		FormatError(mpg123_domain,
			    "mpg123_new() failed: %s",
			    mpg123_plain_strerror(error));
215
		return false;
216 217
	}

218
	AudioFormat audio_format;
219
	if (!mpd_mpg123_open(handle, path_fs.c_str(), audio_format)) {
220
		mpg123_delete(handle);
221
		return false;
222 223 224 225 226
	}

	num_samples = mpg123_length(handle);
	if (num_samples <= 0) {
		mpg123_delete(handle);
227
		return false;
228 229 230 231 232
	}

	/* ID3 tag support not yet implemented */

	mpg123_delete(handle);
233 234 235 236

	tag_handler_invoke_duration(handler, handler_ctx,
				    num_samples / audio_format.sample_rate);
	return true;
237 238 239 240
}

static const char *const mpg123_suffixes[] = {
	"mp3",
241
	nullptr
242 243
};

244
const struct DecoderPlugin mpg123_decoder_plugin = {
245 246 247
	"mpg123",
	mpd_mpg123_init,
	mpd_mpg123_finish,
248
	/* streaming not yet implemented */
249 250 251 252 253 254 255
	nullptr,
	mpd_mpg123_file_decode,
	mpd_mpg123_scan_file,
	nullptr,
	nullptr,
	mpg123_suffixes,
	nullptr,
256
};