audiofile_decoder_plugin.c 6.08 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2011 The Music Player Daemon Project
3 4
 * http://www.musicpd.org
 *
Warren Dukes's avatar
Warren Dukes committed
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 21
#include "config.h"
#include "decoder_api.h"
22
#include "audio_check.h"
23
#include "tag_handler.h"
Warren Dukes's avatar
Warren Dukes committed
24 25

#include <audiofile.h>
26
#include <af_vfs.h>
27
#include <assert.h>
28
#include <glib.h>
29
#include <stdio.h>
30 31 32

#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "audiofile"
Warren Dukes's avatar
Warren Dukes committed
33

34 35 36
/* pick 1020 since its devisible for 8,16,24, and 32-bit audio */
#define CHUNK_SIZE		1020

Max Kellermann's avatar
Max Kellermann committed
37
static int audiofile_get_duration(const char *file)
Warren Dukes's avatar
Warren Dukes committed
38
{
Max Kellermann's avatar
Max Kellermann committed
39
	int total_time;
Warren Dukes's avatar
Warren Dukes committed
40
	AFfilehandle af_fp = afOpenFile(file, "r", NULL);
Avuton Olrich's avatar
Avuton Olrich committed
41
	if (af_fp == AF_NULL_FILEHANDLE) {
Warren Dukes's avatar
Warren Dukes committed
42 43
		return -1;
	}
Max Kellermann's avatar
Max Kellermann committed
44
	total_time = (int)
Avuton Olrich's avatar
Avuton Olrich committed
45 46
	    ((double)afGetFrameCount(af_fp, AF_DEFAULT_TRACK)
	     / afGetRate(af_fp, AF_DEFAULT_TRACK));
Warren Dukes's avatar
Warren Dukes committed
47
	afCloseFile(af_fp);
Max Kellermann's avatar
Max Kellermann committed
48
	return total_time;
Warren Dukes's avatar
Warren Dukes committed
49 50
}

51
static ssize_t
52
audiofile_file_read(AFvirtualfile *vfile, void *data, size_t length)
53 54
{
	struct input_stream *is = (struct input_stream *) vfile->closure;
55 56 57
	GError *error = NULL;
	size_t nbytes;

58
	nbytes = input_stream_lock_read(is, data, length, &error);
59 60 61 62 63 64 65
	if (nbytes == 0 && error != NULL) {
		g_warning("%s", error->message);
		g_error_free(error);
		return -1;
	}

	return nbytes;
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
}

static long
audiofile_file_length(AFvirtualfile *vfile)
{
	struct input_stream *is = (struct input_stream *) vfile->closure;
	return is->size;
}

static long
audiofile_file_tell(AFvirtualfile *vfile)
{
	struct input_stream *is = (struct input_stream *) vfile->closure;
	return is->offset;
}

static void
audiofile_file_destroy(AFvirtualfile *vfile)
{
85 86
	assert(vfile->closure != NULL);

87 88 89 90 91 92 93 94
	vfile->closure = NULL;
}

static long
audiofile_file_seek(AFvirtualfile *vfile, long offset, int is_relative)
{
	struct input_stream *is = (struct input_stream *) vfile->closure;
	int whence = (is_relative ? SEEK_CUR : SEEK_SET);
95
	if (input_stream_lock_seek(is, offset, whence, NULL)) {
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
		return is->offset;
	} else {
		return -1;
	}
}

static AFvirtualfile *
setup_virtual_fops(struct input_stream *stream)
{
	AFvirtualfile *vf = g_malloc(sizeof(AFvirtualfile));
	vf->closure = stream;
	vf->write   = NULL;
	vf->read    = audiofile_file_read;
	vf->length  = audiofile_file_length;
	vf->destroy = audiofile_file_destroy;
	vf->seek    = audiofile_file_seek;
	vf->tell    = audiofile_file_tell;
	return vf;
}

116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
static enum sample_format
audiofile_bits_to_sample_format(int bits)
{
	switch (bits) {
	case 8:
		return SAMPLE_FORMAT_S8;

	case 16:
		return SAMPLE_FORMAT_S16;

	case 24:
		return SAMPLE_FORMAT_S24_P32;

	case 32:
		return SAMPLE_FORMAT_S32;
	}

	return SAMPLE_FORMAT_UNDEFINED;
}

static enum sample_format
137 138 139 140 141
audiofile_setup_sample_format(AFfilehandle af_fp)
{
	int fs, bits;

	afGetSampleFormat(af_fp, AF_DEFAULT_TRACK, &fs, &bits);
142
	if (!audio_valid_sample_format(audiofile_bits_to_sample_format(bits))) {
143 144 145 146 147 148 149 150 151
		g_debug("input file has %d bit samples, converting to 16",
			bits);
		bits = 16;
	}

	afSetVirtualSampleFormat(af_fp, AF_DEFAULT_TRACK,
	                         AF_SAMPFMT_TWOSCOMP, bits);
	afGetVirtualSampleFormat(af_fp, AF_DEFAULT_TRACK, &fs, &bits);

152
	return audiofile_bits_to_sample_format(bits);
153 154
}

155
static void
Max Kellermann's avatar
Max Kellermann committed
156
audiofile_stream_decode(struct decoder *decoder, struct input_stream *is)
Avuton Olrich's avatar
Avuton Olrich committed
157
{
158
	GError *error = NULL;
159
	AFvirtualfile *vf;
Warren Dukes's avatar
Warren Dukes committed
160 161
	int fs, frame_count;
	AFfilehandle af_fp;
162
	struct audio_format audio_format;
163
	float total_time;
Max Kellermann's avatar
Max Kellermann committed
164
	uint16_t bit_rate;
165
	int ret;
166
	char chunk[CHUNK_SIZE];
167
	enum decoder_command cmd;
168

169 170 171 172 173
	if (!is->seekable) {
		g_warning("not seekable");
		return;
	}

Max Kellermann's avatar
Max Kellermann committed
174
	vf = setup_virtual_fops(is);
175

176
	af_fp = afOpenVirtualFile(vf, "r", NULL);
Avuton Olrich's avatar
Avuton Olrich committed
177
	if (af_fp == AF_NULL_FILEHANDLE) {
178
		g_warning("failed to input stream\n");
179
		return;
Warren Dukes's avatar
Warren Dukes committed
180 181
	}

182 183
	if (!audio_format_init_checked(&audio_format,
				       afGetRate(af_fp, AF_DEFAULT_TRACK),
184
				       audiofile_setup_sample_format(af_fp),
185 186 187 188
				       afGetVirtualChannels(af_fp, AF_DEFAULT_TRACK),
				       &error)) {
		g_warning("%s", error->message);
		g_error_free(error);
189 190 191 192
		afCloseFile(af_fp);
		return;
	}

Avuton Olrich's avatar
Avuton Olrich committed
193 194
	frame_count = afGetFrameCount(af_fp, AF_DEFAULT_TRACK);

195
	total_time = ((float)frame_count / (float)audio_format.sample_rate);
Avuton Olrich's avatar
Avuton Olrich committed
196

Max Kellermann's avatar
Max Kellermann committed
197
	bit_rate = (uint16_t)(is->size * 8.0 / total_time / 1000.0 + 0.5);
Avuton Olrich's avatar
Avuton Olrich committed
198

199
	fs = (int)afGetVirtualFrameSize(af_fp, AF_DEFAULT_TRACK, 1);
Warren Dukes's avatar
Warren Dukes committed
200

201
	decoder_initialized(decoder, &audio_format, true, total_time);
202

203 204 205 206 207 208
	do {
		ret = afReadFrames(af_fp, AF_DEFAULT_TRACK, chunk,
				   CHUNK_SIZE / fs);
		if (ret <= 0)
			break;

209 210
		cmd = decoder_data(decoder, NULL,
				   chunk, ret * fs,
211
				   bit_rate);
212 213

		if (cmd == DECODE_COMMAND_SEEK) {
214
			AFframecount frame = decoder_seek_where(decoder) *
215
				audio_format.sample_rate;
216
			afSeekFrame(af_fp, AF_DEFAULT_TRACK, frame);
217 218 219 220 221

			decoder_command_finished(decoder);
			cmd = DECODE_COMMAND_NONE;
		}
	} while (cmd == DECODE_COMMAND_NONE);
222

Warren Dukes's avatar
Warren Dukes committed
223 224 225
	afCloseFile(af_fp);
}

226 227 228
static bool
audiofile_scan_file(const char *file,
		    const struct tag_handler *handler, void *handler_ctx)
Avuton Olrich's avatar
Avuton Olrich committed
229
{
Max Kellermann's avatar
Max Kellermann committed
230
	int total_time = audiofile_get_duration(file);
Avuton Olrich's avatar
Avuton Olrich committed
231

232
	if (total_time < 0) {
233 234
		g_debug("Failed to get total song time from: %s\n",
			file);
235
		return false;
236
	}
Warren Dukes's avatar
Warren Dukes committed
237

238 239
	tag_handler_invoke_duration(handler, handler_ctx, total_time);
	return true;
Warren Dukes's avatar
Warren Dukes committed
240 241
}

242
static const char *const audiofile_suffixes[] = {
243 244
	"wav", "au", "aiff", "aif", NULL
};
Warren Dukes's avatar
Warren Dukes committed
245

246 247 248
static const char *const audiofile_mime_types[] = {
	"audio/x-wav",
	"audio/x-aiff",
249
	NULL
250 251
};

252
const struct decoder_plugin audiofile_decoder_plugin = {
253
	.name = "audiofile",
Max Kellermann's avatar
Max Kellermann committed
254
	.stream_decode = audiofile_stream_decode,
255
	.scan_file = audiofile_scan_file,
256 257
	.suffixes = audiofile_suffixes,
	.mime_types = audiofile_mime_types,
Warren Dukes's avatar
Warren Dukes committed
258
};