diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-09-09 19:24:48 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-09-09 19:24:48 +0000 |
commit | 6d580c1e2b663bea95a2107370b458fb58afda37 (patch) | |
tree | 91400358abf6427a1e060d67a3aa6f98282974f1 /src/xine-engine/load_plugins.c | |
parent | c8489f82948511ec9bbd97f7146ed4b772a89c7f (diff) | |
download | xine-lib-6d580c1e2b663bea95a2107370b458fb58afda37.tar.gz xine-lib-6d580c1e2b663bea95a2107370b458fb58afda37.tar.bz2 |
Remove so const abuse ;-)
CVS patchset: 2637
CVS date: 2002/09/09 19:24:48
Diffstat (limited to 'src/xine-engine/load_plugins.c')
-rw-r--r-- | src/xine-engine/load_plugins.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index c37ce00df..d59cf1916 100644 --- a/src/xine-engine/load_plugins.c +++ b/src/xine-engine/load_plugins.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: load_plugins.c,v 1.88 2002/09/09 15:12:59 mroi Exp $ + * $Id: load_plugins.c,v 1.89 2002/09/09 19:24:48 f1rmb Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -597,7 +597,7 @@ const char *const *xine_get_browsable_input_plugin_ids(xine_p this) { return (_xine_get_featured_input_plugin_ids(this, INPUT_CAP_GET_DIR)); } -const char *xine_get_input_plugin_description(xine_p this, const char *plugin_id) { +const char *xine_get_input_plugin_description(xine_p this, char *plugin_id) { plugin_catalog_t *catalog; plugin_node_t *node; @@ -623,7 +623,7 @@ const char *xine_get_input_plugin_description(xine_p this, const char *plugin_id */ xine_vo_driver_p xine_open_video_driver (xine_p this_ro, - const char *id, + char *id, int visual_type, void *visual) { xine_t *this = (xine_t *)this_ro; @@ -716,7 +716,7 @@ const char *const *xine_list_video_output_plugins (xine_p this) { return catalog->ids; } -xine_ao_driver_p xine_open_audio_driver (xine_p this_ro, const char *id, +xine_ao_driver_p xine_open_audio_driver (xine_p this_ro, char *id, void *data) { xine_t *this = (xine_t *)this_ro; @@ -758,7 +758,7 @@ xine_ao_driver_p xine_open_audio_driver (xine_p this_ro, const char *id, * get autoplay mrl list from input plugin */ -const char *const *xine_get_autoplay_mrls (xine_p this, const char *plugin_id, int *num_mrls) { +const char *const *xine_get_autoplay_mrls (xine_p this, char *plugin_id, int *num_mrls) { plugin_catalog_t *catalog; plugin_node_t *node; @@ -787,8 +787,8 @@ const char *const *xine_get_autoplay_mrls (xine_p this, const char *plugin_id, i /* * input plugin mrl browser support */ -const xine_mrl_t *const *xine_get_browse_mrls (xine_p this, const char *plugin_id, - const char *start_mrl, int *num_mrls) { +const xine_mrl_t *const *xine_get_browse_mrls (xine_p this, char *plugin_id, + char *start_mrl, int *num_mrls) { plugin_catalog_t *catalog; plugin_node_t *node; |