diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-05-03 19:46:06 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-05-03 19:46:06 +0000 |
commit | 1e21218596ab3eb84da7b2ec8aedd46827284b8a (patch) | |
tree | 4e73293d224c7ac9eff131af52e4747b12674ecd /src/video_out | |
parent | 5859b4076e5326996aa21e6fc0ce572edebec469 (diff) | |
download | xine-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/video_out')
-rw-r--r-- | src/video_out/video_out_aa.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_caca.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_directfb.c | 2 | ||||
-rwxr-xr-x | src/video_out/video_out_directx.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_fb.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_none.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_opengl.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_pgx32.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_pgx64.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_sdl.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_stk.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_syncfb.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_vidix.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_xshm.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_xv.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_xvmc.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_xxmc.c | 4 |
17 files changed, 33 insertions, 33 deletions
diff --git a/src/video_out/video_out_aa.c b/src/video_out/video_out_aa.c index 1bdd580fd..4609d773b 100644 --- a/src/video_out/video_out_aa.c +++ b/src/video_out/video_out_aa.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: video_out_aa.c,v 1.46 2005/11/14 12:34:46 valtri Exp $ + * $Id: video_out_aa.c,v 1.47 2006/05/03 19:46:09 dsalt Exp $ * * video_out_aa.c, ascii-art output plugin for xine * @@ -337,7 +337,7 @@ static vo_info_t vo_info_aa = { XINE_VISUAL_TYPE_AA }; -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_VIDEO_OUT, 21, "aa", XINE_VERSION_CODE, &vo_info_aa, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } diff --git a/src/video_out/video_out_caca.c b/src/video_out/video_out_caca.c index 29ab5ca1b..a8d9ca3c2 100644 --- a/src/video_out/video_out_caca.c +++ b/src/video_out/video_out_caca.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: video_out_caca.c,v 1.5 2005/11/14 12:34:46 valtri Exp $ + * $Id: video_out_caca.c,v 1.6 2006/05/03 19:46:09 dsalt Exp $ * * video_out_caca.c, Color AsCii Art output plugin for xine * @@ -338,7 +338,7 @@ static vo_info_t vo_info_caca = { XINE_VISUAL_TYPE_CACA }; -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_VIDEO_OUT, 21, "caca", XINE_VERSION_CODE, &vo_info_caca, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } diff --git a/src/video_out/video_out_directfb.c b/src/video_out/video_out_directfb.c index 7d4e10c09..fc5a6cc78 100644 --- a/src/video_out/video_out_directfb.c +++ b/src/video_out/video_out_directfb.c @@ -1776,7 +1776,7 @@ static vo_info_t vo_info_directfb_x11 = { /*********/ -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_VIDEO_OUT, VIDEO_OUT_DRIVER_IFACE_VERSION, "DirectFB", XINE_VERSION_CODE, &vo_info_directfb_fb, init_class_fb }, diff --git a/src/video_out/video_out_directx.c b/src/video_out/video_out_directx.c index f05eed612..fe1cf9ef8 100755 --- a/src/video_out/video_out_directx.c +++ b/src/video_out/video_out_directx.c @@ -20,7 +20,7 @@ * video_out_directx.c, direct draw video output plugin for xine * by Matthew Grooms <elon@altavista.com> * - * $Id: video_out_directx.c,v 1.28 2005/12/12 15:21:50 valtri Exp $ + * $Id: video_out_directx.c,v 1.29 2006/05/03 19:46:09 dsalt Exp $ */ typedef unsigned char boolean; @@ -1273,7 +1273,7 @@ static vo_info_t vo_info_win32 = { * exported plugin catalog entry */ -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_VIDEO_OUT, 21, "vo_directx", XINE_VERSION_CODE, &vo_info_win32, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } diff --git a/src/video_out/video_out_fb.c b/src/video_out/video_out_fb.c index e532b5651..b70bbd486 100644 --- a/src/video_out/video_out_fb.c +++ b/src/video_out/video_out_fb.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: video_out_fb.c,v 1.45 2005/09/25 00:44:04 miguelfreitas Exp $ + * $Id: video_out_fb.c,v 1.46 2006/05/03 19:46:09 dsalt Exp $ * * video_out_fb.c, frame buffer xine driver by Miguel Freitas * @@ -1133,7 +1133,7 @@ static vo_info_t vo_info_fb = }; /* exported plugin catalog entry */ -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_VIDEO_OUT, 21, "fb", XINE_VERSION_CODE, &vo_info_fb, fb_init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } diff --git a/src/video_out/video_out_none.c b/src/video_out/video_out_none.c index d5ec0d374..a4dab44c5 100644 --- a/src/video_out/video_out_none.c +++ b/src/video_out/video_out_none.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: video_out_none.c,v 1.24 2005/11/14 12:34:46 valtri Exp $ + * $Id: video_out_none.c,v 1.25 2006/05/03 19:46:09 dsalt Exp $ * * Was originally part of toxine frontend. * ...but has now been adapted to xine coding style standards ;) @@ -306,7 +306,7 @@ static vo_info_t vo_info_none = { XINE_VISUAL_TYPE_NONE /* Visual type */ }; -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_VIDEO_OUT, 21, "none", XINE_VERSION_CODE, &vo_info_none, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } diff --git a/src/video_out/video_out_opengl.c b/src/video_out/video_out_opengl.c index 804edb797..f83d7a195 100644 --- a/src/video_out/video_out_opengl.c +++ b/src/video_out/video_out_opengl.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: video_out_opengl.c,v 1.54 2005/09/25 00:44:04 miguelfreitas Exp $ + * $Id: video_out_opengl.c,v 1.55 2006/05/03 19:46:09 dsalt Exp $ * * video_out_opengl.c, OpenGL based interface for xine * @@ -1992,7 +1992,7 @@ static vo_info_t vo_info_opengl = { * exported plugin catalog entry */ -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_VIDEO_OUT, 21, "opengl", XINE_VERSION_CODE, &vo_info_opengl, opengl_init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } diff --git a/src/video_out/video_out_pgx32.c b/src/video_out/video_out_pgx32.c index e7f1d221f..07144b6f9 100644 --- a/src/video_out/video_out_pgx32.c +++ b/src/video_out/video_out_pgx32.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: video_out_pgx32.c,v 1.14 2005/09/25 00:44:04 miguelfreitas Exp $ + * $Id: video_out_pgx32.c,v 1.15 2006/05/03 19:46:09 dsalt Exp $ * * video_out_pgx32.c, Sun PGX32 output plugin for xine * @@ -890,7 +890,7 @@ static void *pgx32_init_class(xine_t *xine, void *visual_gen) return class; } -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { {PLUGIN_VIDEO_OUT, 21, "pgx32", XINE_VERSION_CODE, &vo_info_pgx32, pgx32_init_class}, {PLUGIN_NONE, 0, "", 0, NULL, NULL} }; diff --git a/src/video_out/video_out_pgx64.c b/src/video_out/video_out_pgx64.c index 988f158e1..61fb22aad 100644 --- a/src/video_out/video_out_pgx64.c +++ b/src/video_out/video_out_pgx64.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: video_out_pgx64.c,v 1.75 2005/09/25 00:44:04 miguelfreitas Exp $ + * $Id: video_out_pgx64.c,v 1.76 2006/05/03 19:46:09 dsalt Exp $ * * video_out_pgx64.c, Sun XVR100/PGX64/PGX24 output plugin for xine * @@ -1514,7 +1514,7 @@ static void *pgx64_init_class(xine_t *xine, void *visual_gen) return class; } -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { {PLUGIN_VIDEO_OUT, 21, "pgx64", XINE_VERSION_CODE, &vo_info_pgx64, pgx64_init_class}, {PLUGIN_NONE, 0, "", 0, NULL, NULL} }; diff --git a/src/video_out/video_out_sdl.c b/src/video_out/video_out_sdl.c index 870bfd6c0..0d03a32f9 100644 --- a/src/video_out/video_out_sdl.c +++ b/src/video_out/video_out_sdl.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: video_out_sdl.c,v 1.45 2005/11/28 12:25:21 valtri Exp $ + * $Id: video_out_sdl.c,v 1.46 2006/05/03 19:46:09 dsalt Exp $ * * video_out_sdl.c, Simple DirectMedia Layer * @@ -608,7 +608,7 @@ static vo_info_t vo_info_sdl = { XINE_VISUAL_TYPE_X11, /* visual type supported by this plugin */ }; -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_VIDEO_OUT, 21, "sdl", XINE_VERSION_CODE, &vo_info_sdl, init_class }, { PLUGIN_NONE, 0, "" , 0 , NULL, NULL} diff --git a/src/video_out/video_out_stk.c b/src/video_out/video_out_stk.c index 5d57cec44..539bdbe2f 100644 --- a/src/video_out/video_out_stk.c +++ b/src/video_out/video_out_stk.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: video_out_stk.c,v 1.16 2005/09/25 00:44:04 miguelfreitas Exp $ + * $Id: video_out_stk.c,v 1.17 2006/05/03 19:46:09 dsalt Exp $ * * video_out_stk.c, Libstk Surface Video Driver * more info on Libstk at http://www.libstk.org @@ -484,7 +484,7 @@ static vo_info_t vo_info_stk = { XINE_VISUAL_TYPE_FB, /* visual type supported by this plugin */ }; -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_VIDEO_OUT, 21, "stk", XINE_VERSION_CODE, &vo_info_stk, init_class }, { PLUGIN_NONE, 0, "" , 0 , NULL, NULL} diff --git a/src/video_out/video_out_syncfb.c b/src/video_out/video_out_syncfb.c index e38a1e91f..8d462d86c 100644 --- a/src/video_out/video_out_syncfb.c +++ b/src/video_out/video_out_syncfb.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: video_out_syncfb.c,v 1.102 2005/09/25 00:44:04 miguelfreitas Exp $ + * $Id: video_out_syncfb.c,v 1.103 2006/05/03 19:46:09 dsalt Exp $ * * video_out_syncfb.c, SyncFB (for Matrox G200/G400 cards) interface for xine * @@ -1115,7 +1115,7 @@ static vo_info_t vo_info_syncfb = { * exported plugin catalog entry */ -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_VIDEO_OUT, 21, "SyncFB", XINE_VERSION_CODE, &vo_info_syncfb, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } diff --git a/src/video_out/video_out_vidix.c b/src/video_out/video_out_vidix.c index 9bef113be..4dfcac101 100644 --- a/src/video_out/video_out_vidix.c +++ b/src/video_out/video_out_vidix.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: video_out_vidix.c,v 1.71 2006/04/05 22:12:19 valtri Exp $ + * $Id: video_out_vidix.c,v 1.72 2006/05/03 19:46:09 dsalt Exp $ * * video_out_vidix.c * @@ -1310,7 +1310,7 @@ static vo_info_t vo_info_vidixfb = { * exported plugin catalog entry */ -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ #ifdef HAVE_X11 { PLUGIN_VIDEO_OUT, 21, "vidix", XINE_VERSION_CODE, &vo_info_vidix, vidix_init_class }, diff --git a/src/video_out/video_out_xshm.c b/src/video_out/video_out_xshm.c index a4cbeb49f..e4c6ec9f0 100644 --- a/src/video_out/video_out_xshm.c +++ b/src/video_out/video_out_xshm.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: video_out_xshm.c,v 1.142 2005/09/25 00:44:04 miguelfreitas Exp $ + * $Id: video_out_xshm.c,v 1.143 2006/05/03 19:46:09 dsalt Exp $ * * video_out_xshm.c, X11 shared memory extension interface for xine * @@ -1299,7 +1299,7 @@ static vo_info_t vo_info_xshm = { * exported plugin catalog entry */ -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_VIDEO_OUT, 21, "xshm", XINE_VERSION_CODE, &vo_info_xshm, xshm_init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c index 1b093b041..82bb0c68c 100644 --- a/src/video_out/video_out_xv.c +++ b/src/video_out/video_out_xv.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: video_out_xv.c,v 1.216 2006/05/02 21:19:32 dsalt Exp $ + * $Id: video_out_xv.c,v 1.217 2006/05/03 19:46:09 dsalt Exp $ * * video_out_xv.c, X11 video extension interface for xine * @@ -1606,7 +1606,7 @@ static vo_info_t vo_info_xv = { * exported plugin catalog entry */ -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_VIDEO_OUT, 21, "xv", XINE_VERSION_CODE, &vo_info_xv, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } diff --git a/src/video_out/video_out_xvmc.c b/src/video_out/video_out_xvmc.c index a01804690..ebcadd347 100644 --- a/src/video_out/video_out_xvmc.c +++ b/src/video_out/video_out_xvmc.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: video_out_xvmc.c,v 1.25 2005/09/25 00:44:04 miguelfreitas Exp $ + * $Id: video_out_xvmc.c,v 1.26 2006/05/03 19:46:09 dsalt Exp $ * * video_out_xvmc.c, X11 video motion compensation extension interface for xine * @@ -1796,7 +1796,7 @@ static vo_info_t vo_info_xvmc = { * exported plugin catalog entry */ -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_VIDEO_OUT, 21, "xvmc", XINE_VERSION_CODE, &vo_info_xvmc, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } diff --git a/src/video_out/video_out_xxmc.c b/src/video_out/video_out_xxmc.c index 66b2d3bf8..7cfea5747 100644 --- a/src/video_out/video_out_xxmc.c +++ b/src/video_out/video_out_xxmc.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: video_out_xxmc.c,v 1.19 2005/09/25 00:44:04 miguelfreitas Exp $ + * $Id: video_out_xxmc.c,v 1.20 2006/05/03 19:46:09 dsalt Exp $ * * video_out_xxmc.c, X11 decoding accelerated video extension interface for xine * @@ -2645,7 +2645,7 @@ static vo_info_t vo_info_xxmc = { * exported plugin catalog entry */ -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_VIDEO_OUT, 21, "xxmc", XINE_VERSION_CODE, &vo_info_xxmc, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } |