2009-02-22 17:11:14 +01:00
|
|
|
/*
|
2012-10-01 20:02:59 +02:00
|
|
|
* Copyright (C) 2003-2012 The Music Player Daemon Project
|
2009-02-22 17:11:14 +01:00
|
|
|
* 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.
|
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.
|
2009-02-22 17:11:14 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2009-02-22 17:11:14 +01:00
|
|
|
#include "encoder_list.h"
|
|
|
|
#include "encoder_plugin.h"
|
2012-10-01 20:02:59 +02:00
|
|
|
#include "encoder/VorbisEncoderPlugin.hxx"
|
2009-02-22 17:11:14 +01:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2009-10-26 20:02:34 +01:00
|
|
|
extern const struct encoder_plugin null_encoder_plugin;
|
2009-02-22 17:18:03 +01:00
|
|
|
extern const struct encoder_plugin lame_encoder_plugin;
|
2009-07-14 23:07:41 +02:00
|
|
|
extern const struct encoder_plugin twolame_encoder_plugin;
|
2009-11-10 23:29:54 +01:00
|
|
|
extern const struct encoder_plugin wave_encoder_plugin;
|
2009-11-17 19:41:35 +01:00
|
|
|
extern const struct encoder_plugin flac_encoder_plugin;
|
2009-02-22 17:17:26 +01:00
|
|
|
|
2012-06-12 20:39:53 +02:00
|
|
|
const struct encoder_plugin *const encoder_plugins[] = {
|
2009-10-26 20:02:34 +01:00
|
|
|
&null_encoder_plugin,
|
2009-02-22 17:17:26 +01:00
|
|
|
#ifdef ENABLE_VORBIS_ENCODER
|
|
|
|
&vorbis_encoder_plugin,
|
2009-02-22 17:18:03 +01:00
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_LAME_ENCODER
|
|
|
|
&lame_encoder_plugin,
|
2009-07-14 23:07:41 +02:00
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_TWOLAME_ENCODER
|
|
|
|
&twolame_encoder_plugin,
|
2009-11-10 23:29:54 +01:00
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_WAVE_ENCODER
|
|
|
|
&wave_encoder_plugin,
|
2009-11-17 19:41:35 +01:00
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_FLAC_ENCODER
|
|
|
|
&flac_encoder_plugin,
|
2009-02-22 17:17:26 +01:00
|
|
|
#endif
|
2009-02-22 17:11:14 +01:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct encoder_plugin *
|
|
|
|
encoder_plugin_get(const char *name)
|
|
|
|
{
|
2012-06-12 20:39:53 +02:00
|
|
|
encoder_plugins_for_each(plugin)
|
|
|
|
if (strcmp(plugin->name, name) == 0)
|
|
|
|
return plugin;
|
2009-02-22 17:11:14 +01:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|