audiofile_plugin.c 5.63 KB
Newer Older
Warren Dukes's avatar
Warren Dukes committed
1
/* the Music Player Daemon (MPD)
2
 * Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
Warren Dukes's avatar
Warren Dukes committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * This project's homepage is: http://www.musicpd.org
 * 
 * libaudiofile (wave) support added by Eric Wong <normalperson@yhbt.net>
 * 
 * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

21
#include "../decoder_api.h"
Warren Dukes's avatar
Warren Dukes committed
22 23

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

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

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

Max Kellermann's avatar
Max Kellermann committed
34
static int audiofile_get_duration(const char *file)
Warren Dukes's avatar
Warren Dukes committed
35
{
Max Kellermann's avatar
Max Kellermann committed
36
	int total_time;
Warren Dukes's avatar
Warren Dukes committed
37
	AFfilehandle af_fp = afOpenFile(file, "r", NULL);
Avuton Olrich's avatar
Avuton Olrich committed
38
	if (af_fp == AF_NULL_FILEHANDLE) {
Warren Dukes's avatar
Warren Dukes committed
39 40
		return -1;
	}
Max Kellermann's avatar
Max Kellermann committed
41
	total_time = (int)
Avuton Olrich's avatar
Avuton Olrich committed
42 43
	    ((double)afGetFrameCount(af_fp, AF_DEFAULT_TRACK)
	     / afGetRate(af_fp, AF_DEFAULT_TRACK));
Warren Dukes's avatar
Warren Dukes committed
44
	afCloseFile(af_fp);
Max Kellermann's avatar
Max Kellermann committed
45
	return total_time;
Warren Dukes's avatar
Warren Dukes committed
46 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
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)
{
72 73
	assert(vfile->closure != NULL);

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

103
static void
Max Kellermann's avatar
Max Kellermann committed
104
audiofile_stream_decode(struct decoder *decoder, struct input_stream *is)
Avuton Olrich's avatar
Avuton Olrich committed
105
{
106
	AFvirtualfile *vf;
Warren Dukes's avatar
Warren Dukes committed
107 108
	int fs, frame_count;
	AFfilehandle af_fp;
109
	int bits;
110
	struct audio_format audio_format;
111
	float total_time;
Max Kellermann's avatar
Max Kellermann committed
112
	uint16_t bit_rate;
113 114
	int ret, current = 0;
	char chunk[CHUNK_SIZE];
115
	enum decoder_command cmd;
116

117 118 119 120 121
	if (!is->seekable) {
		g_warning("not seekable");
		return;
	}

Max Kellermann's avatar
Max Kellermann committed
122
	vf = setup_virtual_fops(is);
123

124
	af_fp = afOpenVirtualFile(vf, "r", NULL);
Avuton Olrich's avatar
Avuton Olrich committed
125
	if (af_fp == AF_NULL_FILEHANDLE) {
126
		g_warning("failed to input stream\n");
127
		return;
Warren Dukes's avatar
Warren Dukes committed
128 129
	}

130 131 132 133 134 135 136
	afGetSampleFormat(af_fp, AF_DEFAULT_TRACK, &fs, &bits);
	if (!audio_valid_sample_format(bits)) {
		g_debug("input file has %d bit samples, converting to 16",
			bits);
		bits = 16;
	}

137
	afSetVirtualSampleFormat(af_fp, AF_DEFAULT_TRACK,
138
	                         AF_SAMPFMT_TWOSCOMP, bits);
139
	afGetVirtualSampleFormat(af_fp, AF_DEFAULT_TRACK, &fs, &bits);
140
	audio_format.bits = (uint8_t)bits;
141
	audio_format.sample_rate =
142
	                      (unsigned int)afGetRate(af_fp, AF_DEFAULT_TRACK);
143
	audio_format.channels =
144
	              (uint8_t)afGetVirtualChannels(af_fp, AF_DEFAULT_TRACK);
Avuton Olrich's avatar
Avuton Olrich committed
145

146 147 148 149 150 151 152 153
	if (!audio_format_valid(&audio_format)) {
		g_warning("Invalid audio format: %u:%u:%u\n",
			  audio_format.sample_rate, audio_format.bits,
			  audio_format.channels);
		afCloseFile(af_fp);
		return;
	}

Avuton Olrich's avatar
Avuton Olrich committed
154 155
	frame_count = afGetFrameCount(af_fp, AF_DEFAULT_TRACK);

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

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

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

162
	decoder_initialized(decoder, &audio_format, true, total_time);
163

164 165 166 167 168 169 170
	do {
		ret = afReadFrames(af_fp, AF_DEFAULT_TRACK, chunk,
				   CHUNK_SIZE / fs);
		if (ret <= 0)
			break;

		current += ret;
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
		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);
186

Warren Dukes's avatar
Warren Dukes committed
187 188 189
	afCloseFile(af_fp);
}

190
static struct tag *audiofile_tag_dup(const char *file)
Avuton Olrich's avatar
Avuton Olrich committed
191
{
192
	struct tag *ret = NULL;
Max Kellermann's avatar
Max Kellermann committed
193
	int total_time = audiofile_get_duration(file);
Avuton Olrich's avatar
Avuton Olrich committed
194

Max Kellermann's avatar
Max Kellermann committed
195
	if (total_time >= 0) {
196
		ret = tag_new();
Max Kellermann's avatar
Max Kellermann committed
197
		ret->time = total_time;
Avuton Olrich's avatar
Avuton Olrich committed
198
	} else {
199 200
		g_debug("Failed to get total song time from: %s\n",
			file);
201
	}
Warren Dukes's avatar
Warren Dukes committed
202 203 204 205

	return ret;
}

206
static const char *const audiofile_suffixes[] = {
207 208
	"wav", "au", "aiff", "aif", NULL
};
Warren Dukes's avatar
Warren Dukes committed
209

210 211 212 213 214 215
static const char *const audiofile_mime_types[] = {
	"audio/x-wav",
	"audio/x-aiff",
	NULL 
};

216
const struct decoder_plugin audiofilePlugin = {
217
	.name = "audiofile",
Max Kellermann's avatar
Max Kellermann committed
218
	.stream_decode = audiofile_stream_decode,
219 220 221
	.tag_dup = audiofile_tag_dup,
	.suffixes = audiofile_suffixes,
	.mime_types = audiofile_mime_types,
Warren Dukes's avatar
Warren Dukes committed
222
};