summaryrefslogtreecommitdiff
path: root/src/demuxers
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2006-05-03 19:46:06 +0000
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2006-05-03 19:46:06 +0000
commit1e21218596ab3eb84da7b2ec8aedd46827284b8a (patch)
tree4e73293d224c7ac9eff131af52e4747b12674ecd /src/demuxers
parent5859b4076e5326996aa21e6fc0ce572edebec469 (diff)
downloadxine-lib-1e21218596ab3eb84da7b2ec8aedd46827284b8a.tar.gz
xine-lib-1e21218596ab3eb84da7b2ec8aedd46827284b8a.tar.bz2
Make various arrays and structures (mainly xine_plugin_info) const.
(Diego Pettenò) CVS patchset: 7985 CVS date: 2006/05/03 19:46:06
Diffstat (limited to 'src/demuxers')
-rw-r--r--src/demuxers/demux_asf.c4
-rw-r--r--src/demuxers/demux_avi.c4
-rw-r--r--src/demuxers/demux_elem.c4
-rw-r--r--src/demuxers/demux_fli.c4
-rw-r--r--src/demuxers/demux_flv.c4
-rw-r--r--src/demuxers/demux_iff.c4
-rw-r--r--src/demuxers/demux_image.c4
-rw-r--r--src/demuxers/demux_matroska.c4
-rw-r--r--src/demuxers/demux_mng.c4
-rw-r--r--src/demuxers/demux_mpeg.c4
-rw-r--r--src/demuxers/demux_mpeg_block.c4
-rw-r--r--src/demuxers/demux_mpeg_pes.c4
-rw-r--r--src/demuxers/demux_nsv.c4
-rw-r--r--src/demuxers/demux_ogg.c4
-rw-r--r--src/demuxers/demux_pva.c4
-rw-r--r--src/demuxers/demux_qt.c4
-rw-r--r--src/demuxers/demux_rawdv.c4
-rw-r--r--src/demuxers/demux_real.c4
-rw-r--r--src/demuxers/demux_slave.c4
-rw-r--r--src/demuxers/demux_ts.c4
-rw-r--r--src/demuxers/demux_yuv4mpeg2.c4
-rw-r--r--src/demuxers/demux_yuv_frames.c4
-rw-r--r--src/demuxers/group_audio.c4
-rw-r--r--src/demuxers/group_games.c4
24 files changed, 48 insertions, 48 deletions
diff --git a/src/demuxers/demux_asf.c b/src/demuxers/demux_asf.c
index 132f2caf0..210cca0a6 100644
--- a/src/demuxers/demux_asf.c
+++ b/src/demuxers/demux_asf.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: demux_asf.c,v 1.174 2006/03/06 08:02:44 tmattern Exp $
+ * $Id: demux_asf.c,v 1.175 2006/05/03 19:46:06 dsalt Exp $
*
* demultiplexer for asf streams
*
@@ -2336,7 +2336,7 @@ demuxer_info_t demux_info_asf = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "asf", XINE_VERSION_CODE, &demux_info_asf, init_class },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_avi.c b/src/demuxers/demux_avi.c
index 45a432e15..26897fa58 100644
--- a/src/demuxers/demux_avi.c
+++ b/src/demuxers/demux_avi.c
@@ -19,7 +19,7 @@
*/
/*
- * $Id: demux_avi.c,v 1.223 2006/03/04 12:04:42 tmattern Exp $
+ * $Id: demux_avi.c,v 1.224 2006/05/03 19:46:06 dsalt Exp $
*
* demultiplexer for avi streams
*
@@ -2354,7 +2354,7 @@ demuxer_info_t demux_info_avi = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "avi", XINE_VERSION_CODE, &demux_info_avi, init_class },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_elem.c b/src/demuxers/demux_elem.c
index b4ab18422..4750c4ee0 100644
--- a/src/demuxers/demux_elem.c
+++ b/src/demuxers/demux_elem.c
@@ -19,7 +19,7 @@
*/
/*
- * $Id: demux_elem.c,v 1.86 2005/02/06 15:26:16 tmattern Exp $
+ * $Id: demux_elem.c,v 1.87 2006/05/03 19:46:06 dsalt Exp $
*
* demultiplexer for elementary mpeg streams
*/
@@ -305,7 +305,7 @@ demuxer_info_t demux_info_elem = {
0 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "elem", XINE_VERSION_CODE, &demux_info_elem, init_plugin },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_fli.c b/src/demuxers/demux_fli.c
index d6745b0f6..a53bdef0a 100644
--- a/src/demuxers/demux_fli.c
+++ b/src/demuxers/demux_fli.c
@@ -24,7 +24,7 @@
* avoid while programming a FLI decoder, visit:
* http://www.pcisys.net/~melanson/codecs/
*
- * $Id: demux_fli.c,v 1.56 2005/02/06 15:26:16 tmattern Exp $
+ * $Id: demux_fli.c,v 1.57 2006/05/03 19:46:06 dsalt Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -398,7 +398,7 @@ demuxer_info_t demux_info_fli = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "fli", XINE_VERSION_CODE, &demux_info_fli, init_plugin },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_flv.c b/src/demuxers/demux_flv.c
index 63165a2c6..fac3c2fa1 100644
--- a/src/demuxers/demux_flv.c
+++ b/src/demuxers/demux_flv.c
@@ -24,7 +24,7 @@
* For more information on the FLV file format, visit:
* http://download.macromedia.com/pub/flash/flash_file_format_specification.pdf
*
- * $Id: demux_flv.c,v 1.6 2005/02/06 15:26:16 tmattern Exp $
+ * $Id: demux_flv.c,v 1.7 2006/05/03 19:46:06 dsalt Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -343,7 +343,7 @@ demuxer_info_t demux_info_flv = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "flashvideo", XINE_VERSION_CODE, &demux_info_flv, init_plugin },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_iff.c b/src/demuxers/demux_iff.c
index 0dec90169..3970b21c0 100644
--- a/src/demuxers/demux_iff.c
+++ b/src/demuxers/demux_iff.c
@@ -36,7 +36,7 @@
* * ANIM (Animations)
* - Animation works fine, without seeking.
*
- * $Id: demux_iff.c,v 1.14 2005/11/28 12:24:57 valtri Exp $
+ * $Id: demux_iff.c,v 1.15 2006/05/03 19:46:06 dsalt Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -1334,7 +1334,7 @@ demuxer_info_t demux_info_iff = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "iff", XINE_VERSION_CODE, &demux_info_iff, init_plugin },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_image.c b/src/demuxers/demux_image.c
index e2a7dde74..eec5f97ce 100644
--- a/src/demuxers/demux_image.c
+++ b/src/demuxers/demux_image.c
@@ -19,7 +19,7 @@
*/
/*
- * $Id: demux_image.c,v 1.21 2006/02/11 21:28:02 dsalt Exp $
+ * $Id: demux_image.c,v 1.22 2006/05/03 19:46:06 dsalt Exp $
*
* image dummy demultiplexer
*/
@@ -264,7 +264,7 @@ demuxer_info_t demux_info_image = {
11 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "image", XINE_VERSION_CODE, &demux_info_image, init_class },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_matroska.c b/src/demuxers/demux_matroska.c
index 75b635348..8d73709e0 100644
--- a/src/demuxers/demux_matroska.c
+++ b/src/demuxers/demux_matroska.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: demux_matroska.c,v 1.44 2006/03/11 09:03:24 tmattern Exp $
+ * $Id: demux_matroska.c,v 1.45 2006/05/03 19:46:06 dsalt Exp $
*
* demultiplexer for matroska streams
*
@@ -2731,7 +2731,7 @@ demuxer_info_t demux_info_matroska = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "matroska", XINE_VERSION_CODE, &demux_info_matroska, init_class },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_mng.c b/src/demuxers/demux_mng.c
index 75e5b5039..fa3b8e6b0 100644
--- a/src/demuxers/demux_mng.c
+++ b/src/demuxers/demux_mng.c
@@ -19,7 +19,7 @@
*/
/*
- * $Id: demux_mng.c,v 1.25 2005/02/06 15:26:16 tmattern Exp $
+ * $Id: demux_mng.c,v 1.26 2006/05/03 19:46:06 dsalt Exp $
*
* demux_mng.c, Demuxer plugin for Multiple-image Network Graphics format
*
@@ -378,7 +378,7 @@ demuxer_info_t demux_info_mng = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
{ PLUGIN_DEMUX, 26, "mng", XINE_VERSION_CODE, &demux_info_mng, (void*)init_plugin},
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
};
diff --git a/src/demuxers/demux_mpeg.c b/src/demuxers/demux_mpeg.c
index f3cd43475..d677c0a76 100644
--- a/src/demuxers/demux_mpeg.c
+++ b/src/demuxers/demux_mpeg.c
@@ -19,7 +19,7 @@
*/
/*
- * $Id: demux_mpeg.c,v 1.147 2005/02/22 18:31:37 totte67 Exp $
+ * $Id: demux_mpeg.c,v 1.148 2006/05/03 19:46:06 dsalt Exp $
*
* demultiplexer for mpeg 1/2 program streams
* reads streams of variable blocksizes
@@ -1267,7 +1267,7 @@ demuxer_info_t demux_info_mpeg = {
9 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "mpeg", XINE_VERSION_CODE, &demux_info_mpeg, init_plugin },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_mpeg_block.c b/src/demuxers/demux_mpeg_block.c
index e59910cad..25ea044ec 100644
--- a/src/demuxers/demux_mpeg_block.c
+++ b/src/demuxers/demux_mpeg_block.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: demux_mpeg_block.c,v 1.212 2005/10/14 21:02:16 miguelfreitas Exp $
+ * $Id: demux_mpeg_block.c,v 1.213 2006/05/03 19:46:06 dsalt Exp $
*
* demultiplexer for mpeg 1/2 program streams
* used with fixed blocksize devices (like dvd/vcd)
@@ -1563,7 +1563,7 @@ demuxer_info_t demux_info_mpeg_block = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "mpeg_block", XINE_VERSION_CODE, &demux_info_mpeg_block, init_plugin },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_mpeg_pes.c b/src/demuxers/demux_mpeg_pes.c
index ea070522b..23f67cefb 100644
--- a/src/demuxers/demux_mpeg_pes.c
+++ b/src/demuxers/demux_mpeg_pes.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: demux_mpeg_pes.c,v 1.32 2006/03/16 21:47:37 tmattern Exp $
+ * $Id: demux_mpeg_pes.c,v 1.33 2006/05/03 19:46:07 dsalt Exp $
*
* demultiplexer for mpeg 2 PES (Packetized Elementary Streams)
* reads streams of variable blocksizes
@@ -1676,7 +1676,7 @@ demuxer_info_t demux_info_mpeg_pes = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "mpeg_pes", XINE_VERSION_CODE, &demux_info_mpeg_pes, init_plugin },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_nsv.c b/src/demuxers/demux_nsv.c
index 4c7fd8c07..20e201462 100644
--- a/src/demuxers/demux_nsv.c
+++ b/src/demuxers/demux_nsv.c
@@ -23,7 +23,7 @@
* For more information regarding the NSV file format, visit:
* http://www.pcisys.net/~melanson/codecs/
*
- * $Id: demux_nsv.c,v 1.21 2005/02/06 15:26:17 tmattern Exp $
+ * $Id: demux_nsv.c,v 1.22 2006/05/03 19:46:07 dsalt Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -689,7 +689,7 @@ demuxer_info_t demux_info_nsv = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "nsv", XINE_VERSION_CODE, &demux_info_nsv, demux_nsv_init_plugin },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_ogg.c b/src/demuxers/demux_ogg.c
index ce3f85fc1..ae9d756f5 100644
--- a/src/demuxers/demux_ogg.c
+++ b/src/demuxers/demux_ogg.c
@@ -19,7 +19,7 @@
*/
/*
- * $Id: demux_ogg.c,v 1.164 2005/04/27 17:56:07 tmattern Exp $
+ * $Id: demux_ogg.c,v 1.165 2006/05/03 19:46:07 dsalt Exp $
*
* demultiplexer for ogg streams
*
@@ -2124,7 +2124,7 @@ demuxer_info_t demux_info_ogg = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "ogg", XINE_VERSION_CODE, &demux_info_ogg, ogg_init_class },
{ PLUGIN_DEMUX, 26, "anx", XINE_VERSION_CODE, &demux_info_anx, anx_init_class },
diff --git a/src/demuxers/demux_pva.c b/src/demuxers/demux_pva.c
index 6d7cd0443..fccab780b 100644
--- a/src/demuxers/demux_pva.c
+++ b/src/demuxers/demux_pva.c
@@ -23,7 +23,7 @@
* For more information regarding the PVA file format, refer to this PDF:
* http://www.technotrend.de/download/av_format_v1.pdf
*
- * $Id: demux_pva.c,v 1.21 2005/02/06 15:26:18 tmattern Exp $
+ * $Id: demux_pva.c,v 1.22 2006/05/03 19:46:07 dsalt Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -524,7 +524,7 @@ demuxer_info_t demux_info_pva = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "pva", XINE_VERSION_CODE, &demux_info_pva, init_plugin },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c
index c65bbd712..7eb7e3a10 100644
--- a/src/demuxers/demux_qt.c
+++ b/src/demuxers/demux_qt.c
@@ -30,7 +30,7 @@
* build_frame_table
* free_qt_info
*
- * $Id: demux_qt.c,v 1.205 2006/04/21 23:15:45 dsalt Exp $
+ * $Id: demux_qt.c,v 1.206 2006/05/03 19:46:07 dsalt Exp $
*
*/
@@ -3094,7 +3094,7 @@ demuxer_info_t demux_info_qt = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "quicktime", XINE_VERSION_CODE, &demux_info_qt, init_plugin },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_rawdv.c b/src/demuxers/demux_rawdv.c
index b3f5eaf79..568bff6c8 100644
--- a/src/demuxers/demux_rawdv.c
+++ b/src/demuxers/demux_rawdv.c
@@ -19,7 +19,7 @@
*/
/*
- * $Id: demux_rawdv.c,v 1.25 2005/03/09 22:31:17 tmattern Exp $
+ * $Id: demux_rawdv.c,v 1.26 2006/05/03 19:46:07 dsalt Exp $
*
* demultiplexer for raw dv streams
*/
@@ -447,7 +447,7 @@ demuxer_info_t demux_info_raw_dv = {
1 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "rawdv", XINE_VERSION_CODE, &demux_info_raw_dv, init_plugin },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_real.c b/src/demuxers/demux_real.c
index 0fbf567a2..1f415716f 100644
--- a/src/demuxers/demux_real.c
+++ b/src/demuxers/demux_real.c
@@ -31,7 +31,7 @@
*
* Based on FFmpeg's libav/rm.c.
*
- * $Id: demux_real.c,v 1.106 2005/07/17 23:11:44 dsalt Exp $
+ * $Id: demux_real.c,v 1.107 2006/05/03 19:46:07 dsalt Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -1655,7 +1655,7 @@ demuxer_info_t demux_info_real = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "real", XINE_VERSION_CODE, &demux_info_real, init_class },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_slave.c b/src/demuxers/demux_slave.c
index 8aa7399e4..ccc0563c7 100644
--- a/src/demuxers/demux_slave.c
+++ b/src/demuxers/demux_slave.c
@@ -21,7 +21,7 @@
*/
/*
- * $Id: demux_slave.c,v 1.18 2006/04/05 22:12:18 valtri Exp $
+ * $Id: demux_slave.c,v 1.19 2006/05/03 19:46:07 dsalt Exp $
*
* demuxer for slave "protocol"
* master xine must be started with XINE_PARAM_BROADCASTER_PORT set, that is,
@@ -437,7 +437,7 @@ demuxer_info_t demux_info_slave = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "slave", XINE_VERSION_CODE, &demux_info_slave, init_plugin },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_ts.c b/src/demuxers/demux_ts.c
index 91d92f3a9..08e40c28b 100644
--- a/src/demuxers/demux_ts.c
+++ b/src/demuxers/demux_ts.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: demux_ts.c,v 1.118 2006/02/05 17:27:56 miguelfreitas Exp $
+ * $Id: demux_ts.c,v 1.119 2006/05/03 19:46:07 dsalt Exp $
*
* Demultiplexer for MPEG2 Transport Streams.
*
@@ -2204,7 +2204,7 @@ demuxer_info_t demux_info_ts = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "mpeg-ts", XINE_VERSION_CODE, &demux_info_ts, init_class },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_yuv4mpeg2.c b/src/demuxers/demux_yuv4mpeg2.c
index e97696f5e..0b0801a8d 100644
--- a/src/demuxers/demux_yuv4mpeg2.c
+++ b/src/demuxers/demux_yuv4mpeg2.c
@@ -24,7 +24,7 @@
* tools, visit:
* http://mjpeg.sourceforge.net/
*
- * $Id: demux_yuv4mpeg2.c,v 1.40 2005/02/06 15:26:19 tmattern Exp $
+ * $Id: demux_yuv4mpeg2.c,v 1.41 2006/05/03 19:46:07 dsalt Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -498,7 +498,7 @@ demuxer_info_t demux_info_yuv4mpeg2 = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "yuv4mpeg2", XINE_VERSION_CODE, &demux_info_yuv4mpeg2, init_plugin },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/demux_yuv_frames.c b/src/demuxers/demux_yuv_frames.c
index ef74ca1c1..1be05028e 100644
--- a/src/demuxers/demux_yuv_frames.c
+++ b/src/demuxers/demux_yuv_frames.c
@@ -20,7 +20,7 @@
*/
/*
- * $Id: demux_yuv_frames.c,v 1.19 2005/02/06 15:26:19 tmattern Exp $
+ * $Id: demux_yuv_frames.c,v 1.20 2006/05/03 19:46:07 dsalt Exp $
*
* dummy demultiplexer for raw yuv frames (delivered by v4l)
*/
@@ -276,7 +276,7 @@ demuxer_info_t demux_info_yuv_frames = {
0 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "yuv_frames", XINE_VERSION_CODE, &demux_info_yuv_frames, init_class },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
diff --git a/src/demuxers/group_audio.c b/src/demuxers/group_audio.c
index cce736525..c5e954b31 100644
--- a/src/demuxers/group_audio.c
+++ b/src/demuxers/group_audio.c
@@ -19,7 +19,7 @@
*
* This file contains plugin entries for several demuxers used in games
*
- * $Id: group_audio.c,v 1.21 2005/06/04 20:29:16 jstembridge Exp $
+ * $Id: group_audio.c,v 1.22 2006/05/03 19:46:07 dsalt Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -105,7 +105,7 @@ demuxer_info_t demux_info_mod = {
};
#endif
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "aac", XINE_VERSION_CODE, &demux_info_aac, demux_aac_init_plugin },
{ PLUGIN_DEMUX, 26, "ac3", XINE_VERSION_CODE, &demux_info_ac3, demux_ac3_init_plugin },
diff --git a/src/demuxers/group_games.c b/src/demuxers/group_games.c
index 65fe9c02b..e1c387e4d 100644
--- a/src/demuxers/group_games.c
+++ b/src/demuxers/group_games.c
@@ -19,7 +19,7 @@
*
* This file contains plugin entries for several demuxers used in games
*
- * $Id: group_games.c,v 1.12 2005/02/06 15:26:19 tmattern Exp $
+ * $Id: group_games.c,v 1.13 2006/05/03 19:46:07 dsalt Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -79,7 +79,7 @@ demuxer_info_t demux_info_vmd = {
10 /* priority */
};
-plugin_info_t xine_plugin_info[] = {
+const plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
{ PLUGIN_DEMUX, 26, "wve", XINE_VERSION_CODE, &demux_info_eawve, demux_eawve_init_plugin},
{ PLUGIN_DEMUX, 26, "idcin", XINE_VERSION_CODE, &demux_info_idcin, demux_idcin_init_plugin },