audiofile_plugin.c 5.5 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
#include "../decoder_api.h"
Warren Dukes's avatar
Warren Dukes committed
21 22

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

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

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

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

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

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

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

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

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

129 130 131 132 133 134 135
	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;
	}

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

145 146 147 148 149 150 151 152
	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
153 154
	frame_count = afGetFrameCount(af_fp, AF_DEFAULT_TRACK);

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

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

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

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

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

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

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

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

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

	return ret;
}

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

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

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