SndfileDecoderPlugin.cxx 6.14 KB
Newer Older
1
/*
2
 * Copyright (C) 2003-2013 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"
21
#include "SndfileDecoderPlugin.hxx"
22
#include "DecoderAPI.hxx"
23
#include "CheckAudioFormat.hxx"
24
#include "TagHandler.hxx"
25 26 27 28 29 30 31 32 33

#include <sndfile.h>

#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "sndfile"

static sf_count_t
sndfile_vio_get_filelen(void *user_data)
{
34
	const struct input_stream *is = (const struct input_stream *)user_data;
35

36
	return input_stream_get_size(is);
37 38 39 40 41
}

static sf_count_t
sndfile_vio_seek(sf_count_t offset, int whence, void *user_data)
{
42
	struct input_stream *is = (struct input_stream *)user_data;
43 44
	bool success;

45
	success = input_stream_lock_seek(is, offset, whence, nullptr);
46 47 48
	if (!success)
		return -1;

49
	return input_stream_get_offset(is);
50 51 52 53 54
}

static sf_count_t
sndfile_vio_read(void *ptr, sf_count_t count, void *user_data)
{
55 56
	struct input_stream *is = (struct input_stream *)user_data;
	GError *error = nullptr;
57 58
	size_t nbytes;

59
	nbytes = input_stream_lock_read(is, ptr, count, &error);
60
	if (nbytes == 0 && error != nullptr) {
61 62
		g_warning("%s", error->message);
		g_error_free(error);
63
		return -1;
64
	}
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80

	return nbytes;
}

static sf_count_t
sndfile_vio_write(G_GNUC_UNUSED const void *ptr,
		  G_GNUC_UNUSED sf_count_t count,
		  G_GNUC_UNUSED void *user_data)
{
	/* no writing! */
	return -1;
}

static sf_count_t
sndfile_vio_tell(void *user_data)
{
81
	const struct input_stream *is = (const struct input_stream *)user_data;
82

83
	return input_stream_get_offset(is);
84 85 86 87 88 89 90
}

/**
 * This SF_VIRTUAL_IO implementation wraps MPD's #input_stream to a
 * libsndfile stream.
 */
static SF_VIRTUAL_IO vio = {
91 92 93 94 95
	sndfile_vio_get_filelen,
	sndfile_vio_seek,
	sndfile_vio_read,
	sndfile_vio_write,
	sndfile_vio_tell,
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
};

/**
 * Converts a frame number to a timestamp (in seconds).
 */
static float
frame_to_time(sf_count_t frame, const struct audio_format *audio_format)
{
	return (float)frame / (float)audio_format->sample_rate;
}

/**
 * Converts a timestamp (in seconds) to a frame number.
 */
static sf_count_t
time_to_frame(float t, const struct audio_format *audio_format)
{
	return (sf_count_t)(t * audio_format->sample_rate);
}

static void
sndfile_stream_decode(struct decoder *decoder, struct input_stream *is)
{
119
	GError *error = nullptr;
120 121 122 123
	SNDFILE *sf;
	SF_INFO info;
	struct audio_format audio_format;
	size_t frame_size;
124
	sf_count_t read_frames, num_frames;
125 126 127 128 129 130
	int buffer[4096];
	enum decoder_command cmd;

	info.format = 0;

	sf = sf_open_virtual(&vio, SFM_READ, &info, is);
131
	if (sf == nullptr) {
132 133 134 135 136 137 138
		g_warning("sf_open_virtual() failed");
		return;
	}

	/* for now, always read 32 bit samples.  Later, we could lower
	   MPD's CPU usage by reading 16 bit samples with
	   sf_readf_short() on low-quality source files. */
139 140
	if (!audio_format_init_checked(&audio_format, info.samplerate,
				       SAMPLE_FORMAT_S32,
141 142 143
				       info.channels, &error)) {
		g_warning("%s", error->message);
		g_error_free(error);
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
		return;
	}

	decoder_initialized(decoder, &audio_format, info.seekable,
			    frame_to_time(info.frames, &audio_format));

	frame_size = audio_format_frame_size(&audio_format);
	read_frames = sizeof(buffer) / frame_size;

	do {
		num_frames = sf_readf_int(sf, buffer, read_frames);
		if (num_frames <= 0)
			break;

		cmd = decoder_data(decoder, is,
				   buffer, num_frames * frame_size,
160
				   0);
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
		if (cmd == DECODE_COMMAND_SEEK) {
			sf_count_t c =
				time_to_frame(decoder_seek_where(decoder),
					      &audio_format);
			c = sf_seek(sf, c, SEEK_SET);
			if (c < 0)
				decoder_seek_error(decoder);
			else
				decoder_command_finished(decoder);
			cmd = DECODE_COMMAND_NONE;
		}
	} while (cmd == DECODE_COMMAND_NONE);

	sf_close(sf);
}

177 178 179
static bool
sndfile_scan_file(const char *path_fs,
		  const struct tag_handler *handler, void *handler_ctx)
180 181 182 183 184 185 186 187
{
	SNDFILE *sf;
	SF_INFO info;
	const char *p;

	info.format = 0;

	sf = sf_open(path_fs, SFM_READ, &info);
188
	if (sf == nullptr)
189
		return false;
190 191 192 193

	if (!audio_valid_sample_rate(info.samplerate)) {
		sf_close(sf);
		g_warning("Invalid sample rate in %s\n", path_fs);
194
		return false;
195 196
	}

197 198
	tag_handler_invoke_duration(handler, handler_ctx,
				    info.frames / info.samplerate);
199 200

	p = sf_get_string(sf, SF_STR_TITLE);
201
	if (p != nullptr)
202 203
		tag_handler_invoke_tag(handler, handler_ctx,
				       TAG_TITLE, p);
204 205

	p = sf_get_string(sf, SF_STR_ARTIST);
206
	if (p != nullptr)
207 208
		tag_handler_invoke_tag(handler, handler_ctx,
				       TAG_ARTIST, p);
209 210

	p = sf_get_string(sf, SF_STR_DATE);
211
	if (p != nullptr)
212 213
		tag_handler_invoke_tag(handler, handler_ctx,
				       TAG_DATE, p);
214 215 216

	sf_close(sf);

217
	return true;
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
}

static const char *const sndfile_suffixes[] = {
	"wav", "aiff", "aif", /* Microsoft / SGI / Apple */
	"au", "snd", /* Sun / DEC / NeXT */
	"paf", /* Paris Audio File */
	"iff", "svx", /* Commodore Amiga IFF / SVX */
	"sf", /* IRCAM */
	"voc", /* Creative */
	"w64", /* Soundforge */
	"pvf", /* Portable Voice Format */
	"xi", /* Fasttracker */
	"htk", /* HMM Tool Kit */
	"caf", /* Apple */
	"sd2", /* Sound Designer II */

	/* libsndfile also supports FLAC and Ogg Vorbis, but only by
	   linking with libFLAC and libvorbis - we can do better, we
	   have native plugins for these libraries */

238
	nullptr
239 240 241 242 243 244 245 246
};

static const char *const sndfile_mime_types[] = {
	"audio/x-wav",
	"audio/x-aiff",

	/* what are the MIME types of the other supported formats? */

247
	nullptr
248 249 250
};

const struct decoder_plugin sndfile_decoder_plugin = {
251 252 253 254 255 256 257 258 259 260
	"sndfile",
	nullptr,
	nullptr,
	sndfile_stream_decode,
	nullptr,
	sndfile_scan_file,
	nullptr,
	nullptr,
	sndfile_suffixes,
	sndfile_mime_types,
261
};