audiofile_plugin.c 5.88 KB
Newer Older
1 2 3 4
/*
 * Copyright (C) 2003-2009 The Music Player Daemon Project
 * 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"
Warren Dukes's avatar
Warren Dukes committed
23 24

#include <audiofile.h>
25
#include <af_vfs.h>
26
#include <assert.h>
27 28 29 30
#include <glib.h>

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

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

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

49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
static ssize_t
audiofile_file_read(AFvirtualfile *vfile, void *data, size_t nbytes)
{
	struct input_stream *is = (struct input_stream *) vfile->closure;
	return input_stream_read(is, data, nbytes);
}

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)
{
73 74
	assert(vfile->closure != NULL);

75 76 77 78 79 80 81 82
	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);
Max Kellermann's avatar
Max Kellermann committed
83
	if (input_stream_seek(is, offset, whence)) {
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
		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;
}

104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
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
125 126 127 128 129
audiofile_setup_sample_format(AFfilehandle af_fp)
{
	int fs, bits;

	afGetSampleFormat(af_fp, AF_DEFAULT_TRACK, &fs, &bits);
130
	if (!audio_valid_sample_format(audiofile_bits_to_sample_format(bits))) {
131 132 133 134 135 136 137 138 139
		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);

140
	return audiofile_bits_to_sample_format(bits);
141 142
}

143
static void
Max Kellermann's avatar
Max Kellermann committed
144
audiofile_stream_decode(struct decoder *decoder, struct input_stream *is)
Avuton Olrich's avatar
Avuton Olrich committed
145
{
146
	GError *error = NULL;
147
	AFvirtualfile *vf;
Warren Dukes's avatar
Warren Dukes committed
148 149
	int fs, frame_count;
	AFfilehandle af_fp;
150
	struct audio_format audio_format;
151
	float total_time;
Max Kellermann's avatar
Max Kellermann committed
152
	uint16_t bit_rate;
153 154
	int ret, current = 0;
	char chunk[CHUNK_SIZE];
155
	enum decoder_command cmd;
156

157 158 159 160 161
	if (!is->seekable) {
		g_warning("not seekable");
		return;
	}

Max Kellermann's avatar
Max Kellermann committed
162
	vf = setup_virtual_fops(is);
163

164
	af_fp = afOpenVirtualFile(vf, "r", NULL);
Avuton Olrich's avatar
Avuton Olrich committed
165
	if (af_fp == AF_NULL_FILEHANDLE) {
166
		g_warning("failed to input stream\n");
167
		return;
Warren Dukes's avatar
Warren Dukes committed
168 169
	}

170 171
	if (!audio_format_init_checked(&audio_format,
				       afGetRate(af_fp, AF_DEFAULT_TRACK),
172
				       audiofile_setup_sample_format(af_fp),
173 174 175 176
				       afGetVirtualChannels(af_fp, AF_DEFAULT_TRACK),
				       &error)) {
		g_warning("%s", error->message);
		g_error_free(error);
177 178 179 180
		afCloseFile(af_fp);
		return;
	}

Avuton Olrich's avatar
Avuton Olrich committed
181 182
	frame_count = afGetFrameCount(af_fp, AF_DEFAULT_TRACK);

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

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

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

189
	decoder_initialized(decoder, &audio_format, true, total_time);
190

191 192 193 194 195 196 197
	do {
		ret = afReadFrames(af_fp, AF_DEFAULT_TRACK, chunk,
				   CHUNK_SIZE / fs);
		if (ret <= 0)
			break;

		current += ret;
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
		cmd = decoder_data(decoder, NULL,
				   chunk, ret * fs,
				   (float)current /
				   (float)audio_format.sample_rate,
				   bit_rate, NULL);

		if (cmd == DECODE_COMMAND_SEEK) {
			current = decoder_seek_where(decoder) *
				audio_format.sample_rate;
			afSeekFrame(af_fp, AF_DEFAULT_TRACK, current);

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

Warren Dukes's avatar
Warren Dukes committed
214 215 216
	afCloseFile(af_fp);
}

217
static struct tag *audiofile_tag_dup(const char *file)
Avuton Olrich's avatar
Avuton Olrich committed
218
{
219
	struct tag *ret = NULL;
Max Kellermann's avatar
Max Kellermann committed
220
	int total_time = audiofile_get_duration(file);
Avuton Olrich's avatar
Avuton Olrich committed
221

Max Kellermann's avatar
Max Kellermann committed
222
	if (total_time >= 0) {
223
		ret = tag_new();
Max Kellermann's avatar
Max Kellermann committed
224
		ret->time = total_time;
Avuton Olrich's avatar
Avuton Olrich committed
225
	} else {
226 227
		g_debug("Failed to get total song time from: %s\n",
			file);
228
	}
Warren Dukes's avatar
Warren Dukes committed
229 230 231 232

	return ret;
}

233
static const char *const audiofile_suffixes[] = {
234 235
	"wav", "au", "aiff", "aif", NULL
};
Warren Dukes's avatar
Warren Dukes committed
236

237 238 239 240 241 242
static const char *const audiofile_mime_types[] = {
	"audio/x-wav",
	"audio/x-aiff",
	NULL 
};

243
const struct decoder_plugin audiofile_decoder_plugin = {
244
	.name = "audiofile",
Max Kellermann's avatar
Max Kellermann committed
245
	.stream_decode = audiofile_stream_decode,
246 247 248
	.tag_dup = audiofile_tag_dup,
	.suffixes = audiofile_suffixes,
	.mime_types = audiofile_mime_types,
Warren Dukes's avatar
Warren Dukes committed
249
};