summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/input/input_cdda.c4
-rw-r--r--src/input/input_dvb.c2
-rw-r--r--src/input/input_dvd.c4
-rw-r--r--src/input/input_file.c4
-rw-r--r--src/input/input_gnome_vfs.c4
-rw-r--r--src/input/input_http.c4
-rw-r--r--src/input/input_mms.c4
-rw-r--r--src/input/input_net.c4
-rw-r--r--src/input/input_plugin.h4
-rw-r--r--src/input/input_pnm.c2
-rw-r--r--src/input/input_pvr.c4
-rw-r--r--src/input/input_rtp.c2
-rw-r--r--src/input/input_rtsp.c2
-rw-r--r--src/input/input_stdin_fifo.c4
-rw-r--r--src/input/input_vcd.c4
15 files changed, 26 insertions, 26 deletions
diff --git a/src/input/input_cdda.c b/src/input/input_cdda.c
index 7ee2e7899..3733172e5 100644
--- a/src/input/input_cdda.c
+++ b/src/input/input_cdda.c
@@ -20,7 +20,7 @@
* Compact Disc Digital Audio (CDDA) Input Plugin
* by Mike Melanson (melanson@pcisys.net)
*
- * $Id: input_cdda.c,v 1.91 2006/12/19 19:10:51 dsalt Exp $
+ * $Id: input_cdda.c,v 1.92 2007/01/18 23:02:18 dgp85 Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -2623,7 +2623,7 @@ static const char *cdda_class_get_identifier (input_class_t *this_gen) {
return "cdda";
}
-static char *cdda_class_get_description (input_class_t *this_gen) {
+static const char *cdda_class_get_description (input_class_t *this_gen) {
return _("CD Digital Audio (aka. CDDA)");
}
diff --git a/src/input/input_dvb.c b/src/input/input_dvb.c
index dbec9ff17..3bc9008a7 100644
--- a/src/input/input_dvb.c
+++ b/src/input/input_dvb.c
@@ -3085,7 +3085,7 @@ static input_plugin_t *dvb_class_get_instance (input_class_t *class_gen,
* dvb input plugin class stuff
*/
-static char *dvb_class_get_description (input_class_t *this_gen) {
+static const char *dvb_class_get_description (input_class_t *this_gen) {
return _("DVB (Digital TV) input plugin");
}
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c
index ddc3fe964..6a8315ce1 100644
--- a/src/input/input_dvd.c
+++ b/src/input/input_dvd.c
@@ -18,7 +18,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: input_dvd.c,v 1.212 2006/12/19 19:10:51 dsalt Exp $
+ * $Id: input_dvd.c,v 1.213 2007/01/18 23:02:18 dgp85 Exp $
*
*/
@@ -1680,7 +1680,7 @@ static input_plugin_t *dvd_class_get_instance (input_class_t *class_gen, xine_st
return &this->input_plugin;
}
-static char *dvd_class_get_description (input_class_t *this_gen) {
+static const char *dvd_class_get_description (input_class_t *this_gen) {
trace_print("Called\n");
return "DVD Navigator";
diff --git a/src/input/input_file.c b/src/input/input_file.c
index db7937956..dd2f078f9 100644
--- a/src/input/input_file.c
+++ b/src/input/input_file.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: input_file.c,v 1.118 2006/12/19 19:10:51 dsalt Exp $
+ * $Id: input_file.c,v 1.119 2007/01/18 23:02:18 dgp85 Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -659,7 +659,7 @@ static off_t get_file_size(char *filepathname, char *origin) {
return pstat.st_size;
}
-static char *file_class_get_description (input_class_t *this_gen) {
+static const char *file_class_get_description (input_class_t *this_gen) {
return _("file input plugin");
}
diff --git a/src/input/input_gnome_vfs.c b/src/input/input_gnome_vfs.c
index 3ada09d19..8948abe54 100644
--- a/src/input/input_gnome_vfs.c
+++ b/src/input/input_gnome_vfs.c
@@ -18,7 +18,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: input_gnome_vfs.c,v 1.32 2006/09/08 06:20:37 tmattern Exp $
+ * $Id: input_gnome_vfs.c,v 1.33 2007/01/18 23:02:18 dgp85 Exp $
*/
@@ -212,7 +212,7 @@ gnomevfs_plugin_get_mrl (input_plugin_t *this_gen)
return this->mrl;
}
-static char
+static const char
*gnomevfs_klass_get_description (input_class_t *this_gen)
{
return _("gnome-vfs input plugin as shipped with xine");
diff --git a/src/input/input_http.c b/src/input/input_http.c
index 9011fba7f..18990e2bf 100644
--- a/src/input/input_http.c
+++ b/src/input/input_http.c
@@ -19,7 +19,7 @@
*
* input plugin for http network streams
*
- * $Id: input_http.c,v 1.125 2006/12/08 16:26:10 mshopf Exp $
+ * $Id: input_http.c,v 1.126 2007/01/18 23:02:18 dgp85 Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -990,7 +990,7 @@ static input_plugin_t *http_class_get_instance (input_class_t *cls_gen, xine_str
return &this->input_plugin;
}
-static char *http_class_get_description (input_class_t *this_gen) {
+static const char *http_class_get_description (input_class_t *this_gen) {
return _("http input plugin");
}
diff --git a/src/input/input_mms.c b/src/input/input_mms.c
index 5704e78b6..350958d89 100644
--- a/src/input/input_mms.c
+++ b/src/input/input_mms.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: input_mms.c,v 1.66 2007/01/09 20:50:59 klan Exp $
+ * $Id: input_mms.c,v 1.67 2007/01/18 23:02:18 dgp85 Exp $
*
* mms input plugin based on work from major mms
*/
@@ -439,7 +439,7 @@ static input_plugin_t *mms_class_get_instance (input_class_t *cls_gen, xine_stre
* mms input plugin class stuff
*/
-static char *mms_class_get_description (input_class_t *this_gen) {
+static const char *mms_class_get_description (input_class_t *this_gen) {
return _("mms streaming input plugin");
}
diff --git a/src/input/input_net.c b/src/input/input_net.c
index 19326c301..1baa8c3c6 100644
--- a/src/input/input_net.c
+++ b/src/input/input_net.c
@@ -20,7 +20,7 @@
* Read from a tcp network stream over a lan (put a tweaked mp1e encoder the
* other end and you can watch tv anywhere in the house ..)
*
- * $Id: input_net.c,v 1.68 2006/07/10 22:08:15 dgp85 Exp $
+ * $Id: input_net.c,v 1.69 2007/01/18 23:02:18 dgp85 Exp $
*
* how to set up mp1e for use with this plugin:
*
@@ -506,7 +506,7 @@ static input_plugin_t *net_class_get_instance (input_class_t *cls_gen, xine_stre
* net plugin class
*/
-static char *net_class_get_description (input_class_t *this_gen) {
+static const char *net_class_get_description (input_class_t *this_gen) {
return _("net input plugin as shipped with xine");
}
diff --git a/src/input/input_plugin.h b/src/input/input_plugin.h
index f686f2227..aebbd08e7 100644
--- a/src/input/input_plugin.h
+++ b/src/input/input_plugin.h
@@ -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: input_plugin.h,v 1.62 2006/12/22 16:38:15 klan Exp $
+ * $Id: input_plugin.h,v 1.63 2007/01/18 23:02:18 dgp85 Exp $
*/
#ifndef HAVE_INPUT_PLUGIN_H
@@ -60,7 +60,7 @@ struct input_class_s {
* return human readable (verbose = 1 line) description for
* this plugin class
*/
- char* (*get_description) (input_class_t *this);
+ const char* (*get_description) (input_class_t *this);
/*
* ls function, optional: may be NULL
diff --git a/src/input/input_pnm.c b/src/input/input_pnm.c
index 26fdd350e..c847ca767 100644
--- a/src/input/input_pnm.c
+++ b/src/input/input_pnm.c
@@ -258,7 +258,7 @@ static input_plugin_t *pnm_class_get_instance (input_class_t *cls_gen, xine_stre
* pnm input plugin class stuff
*/
-static char *pnm_class_get_description (input_class_t *this_gen) {
+static const char *pnm_class_get_description (input_class_t *this_gen) {
return _("pnm streaming input plugin");
}
diff --git a/src/input/input_pvr.c b/src/input/input_pvr.c
index f47bfe890..93af332f4 100644
--- a/src/input/input_pvr.c
+++ b/src/input/input_pvr.c
@@ -38,7 +38,7 @@
* usage:
* xine pvr:/<prefix_to_tmp_files>\!<prefix_to_saved_files>\!<max_page_age>
*
- * $Id: input_pvr.c,v 1.63 2006/12/19 19:10:51 dsalt Exp $
+ * $Id: input_pvr.c,v 1.64 2007/01/18 23:02:18 dgp85 Exp $
*/
/**************************************************************************
@@ -1524,7 +1524,7 @@ static input_plugin_t *pvr_class_get_instance (input_class_t *cls_gen, xine_stre
* plugin class functions
*/
-static char *pvr_class_get_description (input_class_t *this_gen) {
+static const char *pvr_class_get_description (input_class_t *this_gen) {
return _("WinTV-PVR 250/350 input plugin");
}
diff --git a/src/input/input_rtp.c b/src/input/input_rtp.c
index b23ecb895..da6bad281 100644
--- a/src/input/input_rtp.c
+++ b/src/input/input_rtp.c
@@ -739,7 +739,7 @@ static input_plugin_t *rtp_class_get_instance (input_class_t *cls_gen,
* net plugin class
*/
-static char *rtp_class_get_description (input_class_t *this_gen) {
+static const char *rtp_class_get_description (input_class_t *this_gen) {
return _("RTP and UDP input plugin as shipped with xine");
}
diff --git a/src/input/input_rtsp.c b/src/input/input_rtsp.c
index fec7b9713..5a7cc6c7f 100644
--- a/src/input/input_rtsp.c
+++ b/src/input/input_rtsp.c
@@ -280,7 +280,7 @@ static input_plugin_t *rtsp_class_get_instance (input_class_t *cls_gen, xine_str
* rtsp input plugin class stuff
*/
-static char *rtsp_class_get_description (input_class_t *this_gen) {
+static const char *rtsp_class_get_description (input_class_t *this_gen) {
return _("rtsp streaming input plugin");
}
diff --git a/src/input/input_stdin_fifo.c b/src/input/input_stdin_fifo.c
index 3780a1cef..435bf795b 100644
--- a/src/input/input_stdin_fifo.c
+++ b/src/input/input_stdin_fifo.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: input_stdin_fifo.c,v 1.67 2006/07/10 22:08:16 dgp85 Exp $
+ * $Id: input_stdin_fifo.c,v 1.68 2007/01/18 23:02:18 dgp85 Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -346,7 +346,7 @@ static input_plugin_t *stdin_class_get_instance (input_class_t *class_gen,
* stdin input plugin class stuff
*/
-static char *stdin_class_get_description (input_class_t *this_gen) {
+static const char *stdin_class_get_description (input_class_t *this_gen) {
return _("stdin streaming input plugin");
}
diff --git a/src/input/input_vcd.c b/src/input/input_vcd.c
index ab0715e96..06b6707f9 100644
--- a/src/input/input_vcd.c
+++ b/src/input/input_vcd.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: input_vcd.c,v 1.86 2006/12/19 19:10:51 dsalt Exp $
+ * $Id: input_vcd.c,v 1.87 2007/01/18 23:02:18 dgp85 Exp $
*
*/
@@ -919,7 +919,7 @@ static input_plugin_t *vcd_class_get_instance (input_class_t *cls_gen, xine_stre
* vcd input plugin class stuff
*/
-static char *vcd_class_get_description (input_class_t *this_gen) {
+static const char *vcd_class_get_description (input_class_t *this_gen) {
return _("Video CD input plugin");
}