2009-03-13 18:43:16 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2009 The Music Player Daemon Project
|
|
|
|
* 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
|
|
|
*/
|
|
|
|
|
2008-10-31 09:19:53 +01:00
|
|
|
#ifndef MPD_DECODER_LIST_H
|
|
|
|
#define MPD_DECODER_LIST_H
|
2004-05-30 02:39:12 +02:00
|
|
|
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <stdio.h>
|
2008-08-26 08:27:08 +02:00
|
|
|
|
|
|
|
struct decoder_plugin;
|
2004-05-30 02:39:12 +02:00
|
|
|
|
|
|
|
/* interface for using plugins */
|
|
|
|
|
2008-11-01 14:51:41 +01:00
|
|
|
const struct decoder_plugin *
|
|
|
|
decoder_plugin_from_suffix(const char *suffix, unsigned int next);
|
2004-05-30 02:39:12 +02:00
|
|
|
|
2008-11-01 14:51:41 +01:00
|
|
|
const struct decoder_plugin *
|
|
|
|
decoder_plugin_from_mime_type(const char *mimeType, unsigned int next);
|
2004-05-30 02:39:12 +02:00
|
|
|
|
2008-11-01 14:51:41 +01:00
|
|
|
const struct decoder_plugin *
|
|
|
|
decoder_plugin_from_name(const char *name);
|
2004-05-30 02:39:12 +02:00
|
|
|
|
2008-12-30 14:08:59 +01:00
|
|
|
void decoder_plugin_print_all_decoders(FILE * fp);
|
|
|
|
|
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
|
|
|
|
2004-05-30 02:39:12 +02:00
|
|
|
#endif
|