DecoderList.cxx 4.14 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 The Music Player Daemon Project
3
 * http://www.musicpd.org
Warren Dukes's avatar
Warren Dukes committed
4 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 "config.h"
21
#include "DecoderList.hxx"
22
#include "DecoderPlugin.hxx"
23
#include "config/ConfigGlobal.hxx"
24
#include "config/Block.hxx"
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
#include "plugins/AudiofileDecoderPlugin.hxx"
#include "plugins/PcmDecoderPlugin.hxx"
#include "plugins/DsdiffDecoderPlugin.hxx"
#include "plugins/DsfDecoderPlugin.hxx"
#include "plugins/FlacDecoderPlugin.h"
#include "plugins/OpusDecoderPlugin.h"
#include "plugins/VorbisDecoderPlugin.h"
#include "plugins/AdPlugDecoderPlugin.h"
#include "plugins/WavpackDecoderPlugin.hxx"
#include "plugins/FfmpegDecoderPlugin.hxx"
#include "plugins/GmeDecoderPlugin.hxx"
#include "plugins/FaadDecoderPlugin.hxx"
#include "plugins/MadDecoderPlugin.hxx"
#include "plugins/SndfileDecoderPlugin.hxx"
#include "plugins/Mpg123DecoderPlugin.hxx"
#include "plugins/WildmidiDecoderPlugin.hxx"
#include "plugins/MikmodDecoderPlugin.hxx"
#include "plugins/ModplugDecoderPlugin.hxx"
#include "plugins/MpcdecDecoderPlugin.hxx"
#include "plugins/FluidsynthDecoderPlugin.hxx"
#include "plugins/SidplayDecoderPlugin.hxx"
46
#include "util/Macros.hxx"
47

48 49
#include <string.h>

50
const struct DecoderPlugin *const decoder_plugins[] = {
51
#ifdef ENABLE_MAD
52
	&mad_decoder_plugin,
53
#endif
54
#ifdef ENABLE_MPG123
55 56
	&mpg123_decoder_plugin,
#endif
57
#ifdef ENABLE_VORBIS_DECODER
Max Kellermann's avatar
Max Kellermann committed
58
	&vorbis_decoder_plugin,
59
#endif
60
#ifdef ENABLE_FLAC
Max Kellermann's avatar
Max Kellermann committed
61 62
	&oggflac_decoder_plugin,
	&flac_decoder_plugin,
63
#endif
64
#ifdef ENABLE_OPUS
65 66
	&opus_decoder_plugin,
#endif
67 68 69
#ifdef ENABLE_SNDFILE
	&sndfile_decoder_plugin,
#endif
70
#ifdef ENABLE_AUDIOFILE
71
	&audiofile_decoder_plugin,
72
#endif
73
#ifdef ENABLE_DSD
74
	&dsdiff_decoder_plugin,
75
	&dsf_decoder_plugin,
76
#endif
77
#ifdef ENABLE_FAAD
78
	&faad_decoder_plugin,
79
#endif
80
#ifdef ENABLE_MPCDEC
81
	&mpcdec_decoder_plugin,
82
#endif
83
#ifdef ENABLE_WAVPACK
84
	&wavpack_decoder_plugin,
85
#endif
86
#ifdef ENABLE_MODPLUG
87
	&modplug_decoder_plugin,
88
#endif
89
#ifdef ENABLE_MIKMOD_DECODER
90
	&mikmod_decoder_plugin,
91
#endif
92 93 94
#ifdef ENABLE_SIDPLAY
	&sidplay_decoder_plugin,
#endif
95 96 97
#ifdef ENABLE_WILDMIDI
	&wildmidi_decoder_plugin,
#endif
98 99 100
#ifdef ENABLE_FLUIDSYNTH
	&fluidsynth_decoder_plugin,
#endif
101
#ifdef ENABLE_ADPLUG
102 103
	&adplug_decoder_plugin,
#endif
104
#ifdef ENABLE_FFMPEG
105
	&ffmpeg_decoder_plugin,
106
#endif
107
#ifdef ENABLE_GME
108
	&gme_decoder_plugin,
109
#endif
110
	&pcm_decoder_plugin,
111
	nullptr
112
};
113

114 115
static constexpr unsigned num_decoder_plugins =
	ARRAY_SIZE(decoder_plugins) - 1;
116

117
/** which plugins have been initialized successfully? */
118
bool decoder_plugins_enabled[num_decoder_plugins];
119

120
const struct DecoderPlugin *
121
decoder_plugin_from_name(const char *name)
Avuton Olrich's avatar
Avuton Olrich committed
122
{
123
	return decoder_plugins_find([=](const DecoderPlugin &plugin){
124 125
			return strcmp(plugin.name, name) == 0;
		});
126 127
}

128
void decoder_plugin_init_all(void)
Avuton Olrich's avatar
Avuton Olrich committed
129
{
130
	ConfigBlock empty;
131

132
	for (unsigned i = 0; decoder_plugins[i] != nullptr; ++i) {
133
		const DecoderPlugin &plugin = *decoder_plugins[i];
134 135
		const auto *param =
			config_find_block(ConfigBlockOption::DECODER, "plugin",
136
					  plugin.name);
137

138 139 140
		if (param == nullptr)
			param = &empty;
		else if (!param->GetBlockValue("enabled", true))
141 142 143
			/* the plugin is disabled in mpd.conf */
			continue;

144
		if (plugin.Init(*param))
145 146
			decoder_plugins_enabled[i] = true;
	}
147 148
}

149
void decoder_plugin_deinit_all(void)
Avuton Olrich's avatar
Avuton Olrich committed
150
{
151 152 153
	decoder_plugins_for_each_enabled([=](const DecoderPlugin &plugin){
			plugin.Finish();
		});
154
}
155 156 157 158 159 160 161 162

bool
decoder_plugins_supports_suffix(const char *suffix)
{
	return decoder_plugins_try([suffix](const DecoderPlugin &plugin){
			return plugin.SupportsSuffix(suffix);
		});
}