DecoderList.cxx 4.23 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
#include "plugins/AudiofileDecoderPlugin.hxx"
#include "plugins/PcmDecoderPlugin.hxx"
#include "plugins/DsdiffDecoderPlugin.hxx"
#include "plugins/DsfDecoderPlugin.hxx"
29
#include "plugins/HybridDsdDecoderPlugin.hxx"
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
#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"
47
#include "util/Macros.hxx"
48

49 50
#include <string.h>

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

116 117
static constexpr unsigned num_decoder_plugins =
	ARRAY_SIZE(decoder_plugins) - 1;
118

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

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

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

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

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

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

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

bool
159
decoder_plugins_supports_suffix(const char *suffix) noexcept
160 161 162 163 164
{
	return decoder_plugins_try([suffix](const DecoderPlugin &plugin){
			return plugin.SupportsSuffix(suffix);
		});
}