decoder_list.c 4.41 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
 * This project's homepage is: 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

19
#include "decoder_list.h"
20
#include "decoder_api.h"
21 22

#include <glib.h>
23

24 25 26 27 28
extern const struct decoder_plugin mp3Plugin;
extern const struct decoder_plugin oggvorbisPlugin;
extern const struct decoder_plugin flacPlugin;
extern const struct decoder_plugin oggflacPlugin;
extern const struct decoder_plugin audiofilePlugin;
Max Kellermann's avatar
Max Kellermann committed
29
extern const struct decoder_plugin mp4_plugin;
30 31
extern const struct decoder_plugin aacPlugin;
extern const struct decoder_plugin mpcPlugin;
Max Kellermann's avatar
Max Kellermann committed
32
extern const struct decoder_plugin wavpack_plugin;
33
extern const struct decoder_plugin modPlugin;
Max Kellermann's avatar
Max Kellermann committed
34
extern const struct decoder_plugin ffmpeg_plugin;
35

36 37 38 39 40 41 42
static const struct decoder_plugin *const decoder_plugins[] = {
#ifdef HAVE_MAD
	&mp3Plugin,
#endif
#ifdef HAVE_OGGVORBIS
	&oggvorbisPlugin,
#endif
43
#if defined(HAVE_FLAC) || defined(HAVE_OGGFLAC)
44 45 46 47 48 49 50 51 52 53 54
	&oggflacPlugin,
#endif
#ifdef HAVE_FLAC
	&flacPlugin,
#endif
#ifdef HAVE_AUDIOFILE
	&audiofilePlugin,
#endif
#ifdef HAVE_FAAD
	&aacPlugin,
#endif
55
#ifdef HAVE_MP4
Max Kellermann's avatar
Max Kellermann committed
56
	&mp4_plugin,
57
#endif
58 59 60 61
#ifdef HAVE_MPCDEC
	&mpcPlugin,
#endif
#ifdef HAVE_WAVPACK
Max Kellermann's avatar
Max Kellermann committed
62
	&wavpack_plugin,
63 64 65 66 67
#endif
#ifdef HAVE_MIKMOD
	&modPlugin,
#endif
#ifdef HAVE_FFMPEG
Max Kellermann's avatar
Max Kellermann committed
68
	&ffmpeg_plugin,
69 70
#endif
};
71

72 73 74
enum {
	num_decoder_plugins = G_N_ELEMENTS(decoder_plugins),
};
75

76 77
/** which plugins have been initialized successfully? */
static bool decoder_plugins_enabled[num_decoder_plugins];
78

Max Kellermann's avatar
Max Kellermann committed
79
static int stringFoundInStringArray(const char *const*array, const char *suffix)
Avuton Olrich's avatar
Avuton Olrich committed
80 81 82 83
{
	while (array && *array) {
		if (strcasecmp(*array, suffix) == 0)
			return 1;
84 85
		array++;
	}
Avuton Olrich's avatar
Avuton Olrich committed
86

87 88 89
	return 0;
}

90 91
const struct decoder_plugin *
decoder_plugin_from_suffix(const char *suffix, unsigned int next)
Avuton Olrich's avatar
Avuton Olrich committed
92
{
93
	static unsigned i = num_decoder_plugins;
Avuton Olrich's avatar
Avuton Olrich committed
94 95 96

	if (suffix == NULL)
		return NULL;
97

98 99 100 101 102 103 104
	if (!next)
		i = 0;
	for (; i < num_decoder_plugins; ++i) {
		const struct decoder_plugin *plugin = decoder_plugins[i];
		if (decoder_plugins_enabled[i] &&
		    stringFoundInStringArray(plugin->suffixes, suffix)) {
			++i;
105 106 107 108 109 110 111
			return plugin;
		}
	}

	return NULL;
}

112 113
const struct decoder_plugin *
decoder_plugin_from_mime_type(const char *mimeType, unsigned int next)
Avuton Olrich's avatar
Avuton Olrich committed
114
{
115
	static unsigned i = num_decoder_plugins;
Avuton Olrich's avatar
Avuton Olrich committed
116 117 118

	if (mimeType == NULL)
		return NULL;
119

120 121 122 123 124 125 126
	if (!next)
		i = 0;
	for (; i < num_decoder_plugins; ++i) {
		const struct decoder_plugin *plugin = decoder_plugins[i];
		if (decoder_plugins_enabled[i] &&
		    stringFoundInStringArray(plugin->mime_types, mimeType)) {
			++i;
127 128 129 130 131 132 133
			return plugin;
		}
	}

	return NULL;
}

134 135
const struct decoder_plugin *
decoder_plugin_from_name(const char *name)
Avuton Olrich's avatar
Avuton Olrich committed
136
{
137 138 139 140 141 142
	for (unsigned i = 0; i < num_decoder_plugins; ++i) {
		const struct decoder_plugin *plugin = decoder_plugins[i];
		if (decoder_plugins_enabled[i] &&
		    strcmp(plugin->name, name) == 0)
			return plugin;
	}
143

144
	return NULL;
145 146
}

147
void decoder_plugin_print_all_suffixes(FILE * fp)
Avuton Olrich's avatar
Avuton Olrich committed
148
{
Max Kellermann's avatar
Max Kellermann committed
149
	const char *const*suffixes;
150

151 152 153 154 155
	for (unsigned i = 0; i < num_decoder_plugins; ++i) {
		const struct decoder_plugin *plugin = decoder_plugins[i];
		if (!decoder_plugins_enabled[i])
			continue;

156
		suffixes = plugin->suffixes;
Avuton Olrich's avatar
Avuton Olrich committed
157
		while (suffixes && *suffixes) {
158
			fprintf(fp, "%s ", *suffixes);
159 160 161
			suffixes++;
		}
	}
162 163
	fprintf(fp, "\n");
	fflush(fp);
164 165
}

166
void decoder_plugin_init_all(void)
Avuton Olrich's avatar
Avuton Olrich committed
167
{
168 169
	for (unsigned i = 0; i < num_decoder_plugins; ++i) {
		const struct decoder_plugin *plugin = decoder_plugins[i];
170
		if (plugin->init == NULL || decoder_plugins[i]->init())
171 172
			decoder_plugins_enabled[i] = true;
	}
173 174
}

175
void decoder_plugin_deinit_all(void)
Avuton Olrich's avatar
Avuton Olrich committed
176
{
177 178 179 180 181
	for (unsigned i = 0; i < num_decoder_plugins; ++i) {
		const struct decoder_plugin *plugin = decoder_plugins[i];
		if (decoder_plugins_enabled[i] && plugin->finish != NULL)
			decoder_plugins[i]->finish();
	}
182
}