summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-06-26 22:25:03 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-06-26 22:25:03 +0000
commitb96fb38673c388752554e01c80be8a86373f6fb2 (patch)
treeb363f62afbdb9376151c896be8f90d28977b5fa0
parentf94d61ea8da742fc7d52f601db02a5b5632d4598 (diff)
downloadxine-lib-b96fb38673c388752554e01c80be8a86373f6fb2.tar.gz
xine-lib-b96fb38673c388752554e01c80be8a86373f6fb2.tar.bz2
these should be static
CVS patchset: 5101 CVS date: 2003/06/26 22:25:03
-rw-r--r--src/post/deinterlace/xine_plugin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/post/deinterlace/xine_plugin.c b/src/post/deinterlace/xine_plugin.c
index 3db6a3160..f346effa4 100644
--- a/src/post/deinterlace/xine_plugin.c
+++ b/src/post/deinterlace/xine_plugin.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: xine_plugin.c,v 1.8 2003/06/22 15:42:07 miguelfreitas Exp $
+ * $Id: xine_plugin.c,v 1.9 2003/06/26 22:25:03 miguelfreitas Exp $
*
* advanced video deinterlacer plugin
* Jun/2003 by Miguel Freitas
@@ -162,7 +162,7 @@ static int set_parameters (xine_post_t *this_gen, void *param_gen) {
return 1;
}
-int get_parameters (xine_post_t *this_gen, void *param_gen) {
+static int get_parameters (xine_post_t *this_gen, void *param_gen) {
post_plugin_deinterlace_t *this = (post_plugin_deinterlace_t *)this_gen;
deinterlace_parameters_t *param = (deinterlace_parameters_t *)param_gen;
@@ -177,7 +177,7 @@ int get_parameters (xine_post_t *this_gen, void *param_gen) {
return 1;
}
-xine_post_api_descr_t * get_param_descr (void) {
+static xine_post_api_descr_t * get_param_descr (void) {
return &param_descr;
}