summaryrefslogtreecommitdiff
path: root/src/post/planar/expand.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-06-29 18:56:24 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-06-29 18:56:24 +0000
commit5b65a3cddd0a1e963a1b683398dc5482c6e1c2c6 (patch)
tree383efd1c6d29b1684a36e8460629a63129028a9e /src/post/planar/expand.c
parent3181b8ec876d1b2aee28c743d7c5db95caa8a08a (diff)
downloadxine-lib-5b65a3cddd0a1e963a1b683398dc5482c6e1c2c6.tar.gz
xine-lib-5b65a3cddd0a1e963a1b683398dc5482c6e1c2c6.tar.bz2
port of some simple video filters from mplayer
CVS patchset: 5113 CVS date: 2003/06/29 18:56:24
Diffstat (limited to 'src/post/planar/expand.c')
-rw-r--r--src/post/planar/expand.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/post/planar/expand.c b/src/post/planar/expand.c
index ee4bd1042..01284b3e7 100644
--- a/src/post/planar/expand.c
+++ b/src/post/planar/expand.c
@@ -31,9 +31,9 @@
/* plugin class initialization function */
-static void *expand_init_plugin(xine_t *xine, void *);
-
+void *expand_init_plugin(xine_t *xine, void *);
+#if 0 /* moved to planar.c */
/* plugin catalog information */
post_info_t expand_special_info = { XINE_POST_TYPE_VIDEO_FILTER };
@@ -42,7 +42,7 @@ plugin_info_t xine_plugin_info[] = {
{ PLUGIN_POST, 3, "expand", XINE_VERSION_CODE, &expand_special_info, &expand_init_plugin },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
};
-
+#endif
/* plugin structure */
typedef struct post_expand_out_s post_expand_out_t;
@@ -77,7 +77,7 @@ static void expand_close(xine_video_port_t *port_gen, xine_stream_t *s
static int expand_draw(vo_frame_t *frame, xine_stream_t *stream);
-static void *expand_init_plugin(xine_t *xine, void *data)
+void *expand_init_plugin(xine_t *xine, void *data)
{
post_class_t *class = (post_class_t *)malloc(sizeof(post_class_t));