decoder_list.c 4.62 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
#include "utils.h"
22 23

#include <glib.h>
24

25 26 27 28 29
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
30
extern const struct decoder_plugin mp4_plugin;
31 32
extern const struct decoder_plugin aacPlugin;
extern const struct decoder_plugin mpcPlugin;
Max Kellermann's avatar
Max Kellermann committed
33
extern const struct decoder_plugin wavpack_plugin;
34
extern const struct decoder_plugin modplug_plugin;
35
extern const struct decoder_plugin modPlugin;
Max Kellermann's avatar
Max Kellermann committed
36
extern const struct decoder_plugin ffmpeg_plugin;
37

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

77 78 79
enum {
	num_decoder_plugins = G_N_ELEMENTS(decoder_plugins),
};
80

81 82
/** which plugins have been initialized successfully? */
static bool decoder_plugins_enabled[num_decoder_plugins];
83

84 85
const struct decoder_plugin *
decoder_plugin_from_suffix(const char *suffix, unsigned int next)
Avuton Olrich's avatar
Avuton Olrich committed
86
{
87
	static unsigned i = num_decoder_plugins;
Avuton Olrich's avatar
Avuton Olrich committed
88 89 90

	if (suffix == NULL)
		return NULL;
91

92 93 94 95 96 97 98
	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;
99 100 101 102 103 104 105
			return plugin;
		}
	}

	return NULL;
}

106 107
const struct decoder_plugin *
decoder_plugin_from_mime_type(const char *mimeType, unsigned int next)
Avuton Olrich's avatar
Avuton Olrich committed
108
{
109
	static unsigned i = num_decoder_plugins;
Avuton Olrich's avatar
Avuton Olrich committed
110 111 112

	if (mimeType == NULL)
		return NULL;
113

114 115 116 117 118 119 120
	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;
121 122 123 124 125 126 127
			return plugin;
		}
	}

	return NULL;
}

128 129
const struct decoder_plugin *
decoder_plugin_from_name(const char *name)
Avuton Olrich's avatar
Avuton Olrich committed
130
{
131 132 133 134 135 136
	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;
	}
137

138
	return NULL;
139 140
}

141
void decoder_plugin_print_all_suffixes(FILE * fp)
Avuton Olrich's avatar
Avuton Olrich committed
142
{
Max Kellermann's avatar
Max Kellermann committed
143
	const char *const*suffixes;
144

145 146 147 148 149
	for (unsigned i = 0; i < num_decoder_plugins; ++i) {
		const struct decoder_plugin *plugin = decoder_plugins[i];
		if (!decoder_plugins_enabled[i])
			continue;

150
		suffixes = plugin->suffixes;
Avuton Olrich's avatar
Avuton Olrich committed
151
		while (suffixes && *suffixes) {
152
			fprintf(fp, "%s ", *suffixes);
153 154 155
			suffixes++;
		}
	}
156 157
	fprintf(fp, "\n");
	fflush(fp);
158 159
}

160 161 162 163 164 165 166 167 168 169 170 171 172
void decoder_plugin_print_all_decoders(FILE * fp)
{
	for (unsigned i = 0; i < num_decoder_plugins; ++i) {
		const struct decoder_plugin *plugin = decoder_plugins[i];
		if (!decoder_plugins_enabled[i])
			continue;

		fprintf(fp, "%s ", plugin->name);
	}
	fprintf(fp, "\n");
	fflush(fp);
}

173
void decoder_plugin_init_all(void)
Avuton Olrich's avatar
Avuton Olrich committed
174
{
175 176
	for (unsigned i = 0; i < num_decoder_plugins; ++i) {
		const struct decoder_plugin *plugin = decoder_plugins[i];
177
		if (plugin->init == NULL || decoder_plugins[i]->init())
178 179
			decoder_plugins_enabled[i] = true;
	}
180 181
}

182
void decoder_plugin_deinit_all(void)
Avuton Olrich's avatar
Avuton Olrich committed
183
{
184 185 186 187 188
	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();
	}
189
}