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/post/planar/planar.c | |
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/post/planar/planar.c')
-rw-r--r-- | src/post/planar/planar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/post/planar/planar.c b/src/post/planar/planar.c index 8600c482a..949d3fec3 100644 --- a/src/post/planar/planar.c +++ b/src/post/planar/planar.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: planar.c,v 1.10 2006/02/05 21:07:54 miguelfreitas Exp $ + * $Id: planar.c,v 1.11 2006/05/03 19:46:09 dsalt Exp $ * * catalog for planar post plugins */ @@ -56,7 +56,7 @@ post_info_t pp_special_info = { XINE_POST_TYPE_VIDEO_FILTER }; extern void *noise_init_plugin(xine_t *xine, void *); post_info_t noise_special_info = { XINE_POST_TYPE_VIDEO_FILTER }; -plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_POST, 9, "expand", XINE_VERSION_CODE, &expand_special_info, &expand_init_plugin }, { PLUGIN_POST, 9, "fill", XINE_VERSION_CODE, &fill_special_info, &fill_init_plugin }, |