2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2013-01-30 17:18:48 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2004-06-16 23:52:59 +02:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2004-06-16 23:52:59 +02:00
|
|
|
*/
|
|
|
|
|
2013-01-30 17:18:48 +01:00
|
|
|
#ifndef MPD_DECODER_LIST_HXX
|
|
|
|
#define MPD_DECODER_LIST_HXX
|
2008-08-26 08:27:08 +02:00
|
|
|
|
2013-12-29 16:18:33 +01:00
|
|
|
#include "Compiler.h"
|
|
|
|
|
2013-10-21 20:31:34 +02:00
|
|
|
struct DecoderPlugin;
|
2004-05-30 02:39:12 +02:00
|
|
|
|
2013-10-21 20:31:34 +02:00
|
|
|
extern const struct DecoderPlugin *const decoder_plugins[];
|
2009-11-07 15:46:45 +01:00
|
|
|
extern bool decoder_plugins_enabled[];
|
|
|
|
|
2004-05-30 02:39:12 +02:00
|
|
|
/* interface for using plugins */
|
|
|
|
|
2013-12-29 17:06:59 +01:00
|
|
|
gcc_pure
|
2013-10-21 20:31:34 +02:00
|
|
|
const struct DecoderPlugin *
|
2008-11-01 14:51:41 +01:00
|
|
|
decoder_plugin_from_name(const char *name);
|
2004-05-30 02:39:12 +02:00
|
|
|
|
2004-05-30 02:41:23 +02:00
|
|
|
/* this is where we "load" all the "plugins" ;-) */
|
2008-08-26 08:27:09 +02:00
|
|
|
void decoder_plugin_init_all(void);
|
2004-05-30 02:41:23 +02:00
|
|
|
|
|
|
|
/* this is where we "unload" all the "plugins" */
|
2008-08-26 08:27:09 +02:00
|
|
|
void decoder_plugin_deinit_all(void);
|
2004-05-30 02:41:23 +02:00
|
|
|
|
2013-10-21 22:02:19 +02:00
|
|
|
template<typename F>
|
|
|
|
static inline const DecoderPlugin *
|
|
|
|
decoder_plugins_find(F f)
|
|
|
|
{
|
|
|
|
for (unsigned i = 0; decoder_plugins[i] != nullptr; ++i)
|
|
|
|
if (decoder_plugins_enabled[i] && f(*decoder_plugins[i]))
|
|
|
|
return decoder_plugins[i];
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2013-10-21 22:14:08 +02:00
|
|
|
template<typename F>
|
|
|
|
static inline bool
|
|
|
|
decoder_plugins_try(F f)
|
|
|
|
{
|
|
|
|
for (unsigned i = 0; decoder_plugins[i] != nullptr; ++i)
|
|
|
|
if (decoder_plugins_enabled[i] && f(*decoder_plugins[i]))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-21 22:02:19 +02:00
|
|
|
template<typename F>
|
|
|
|
static inline void
|
|
|
|
decoder_plugins_for_each(F f)
|
|
|
|
{
|
|
|
|
for (auto i = decoder_plugins; *i != nullptr; ++i)
|
|
|
|
f(**i);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename F>
|
|
|
|
static inline void
|
|
|
|
decoder_plugins_for_each_enabled(F f)
|
|
|
|
{
|
|
|
|
for (unsigned i = 0; decoder_plugins[i] != nullptr; ++i)
|
|
|
|
if (decoder_plugins_enabled[i])
|
|
|
|
f(*decoder_plugins[i]);
|
|
|
|
}
|
|
|
|
|
2013-12-29 16:18:33 +01:00
|
|
|
/**
|
|
|
|
* Is there at least once #DecoderPlugin that supports the specified
|
|
|
|
* file name suffix?
|
|
|
|
*/
|
|
|
|
gcc_pure gcc_nonnull_all
|
|
|
|
bool
|
|
|
|
decoder_plugins_supports_suffix(const char *suffix);
|
|
|
|
|
2004-05-30 02:39:12 +02:00
|
|
|
#endif
|