diff options
Diffstat (limited to 'src/post/planar')
-rw-r--r-- | src/post/planar/boxblur.c | 13 | ||||
-rw-r--r-- | src/post/planar/denoise3d.c | 14 | ||||
-rw-r--r-- | src/post/planar/eq.c | 12 | ||||
-rw-r--r-- | src/post/planar/eq2.c | 13 | ||||
-rw-r--r-- | src/post/planar/expand.c | 11 | ||||
-rw-r--r-- | src/post/planar/invert.c | 15 | ||||
-rw-r--r-- | src/post/planar/planar.c | 16 | ||||
-rw-r--r-- | src/post/planar/unsharp.c | 13 |
8 files changed, 14 insertions, 93 deletions
diff --git a/src/post/planar/boxblur.c b/src/post/planar/boxblur.c index 5be693e33..7ec51bc55 100644 --- a/src/post/planar/boxblur.c +++ b/src/post/planar/boxblur.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: boxblur.c,v 1.6 2003/08/15 14:43:29 mroi Exp $ + * $Id: boxblur.c,v 1.7 2003/10/06 21:52:43 miguelfreitas Exp $ * * mplayer's boxblur * Copyright (C) 2002 Michael Niedermayer <michaelni@gmx.at> @@ -31,17 +31,6 @@ /* plugin class initialization function */ void *boxblur_init_plugin(xine_t *xine, void *); -#if 0 /* moved to planar.c */ -/* plugin catalog information */ -post_info_t boxblur_special_info = { XINE_POST_TYPE_VIDEO_FILTER }; - -plugin_info_t xine_plugin_info[] = { - /* type, API, "name", version, special_info, init_function */ - { PLUGIN_POST, 4, "boxblur", XINE_VERSION_CODE, &boxblur_special_info, &boxblur_init_plugin }, - { PLUGIN_NONE, 0, "", 0, NULL, NULL } -}; -#endif - typedef struct post_plugin_boxblur_s post_plugin_boxblur_t; /* diff --git a/src/post/planar/denoise3d.c b/src/post/planar/denoise3d.c index 47570d4a9..024cba960 100644 --- a/src/post/planar/denoise3d.c +++ b/src/post/planar/denoise3d.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: denoise3d.c,v 1.6 2003/08/15 14:43:30 mroi Exp $ + * $Id: denoise3d.c,v 1.7 2003/10/06 21:52:43 miguelfreitas Exp $ * * mplayer's denoise3d * Copyright (C) 2003 Daniel Moreno <comac@comac.darktech.org> @@ -38,18 +38,6 @@ /* plugin class initialization function */ void *denoise3d_init_plugin(xine_t *xine, void *); - -#if 0 /* moved to planar.c */ -/* plugin catalog information */ -post_info_t denoise3d_special_info = { XINE_POST_TYPE_VIDEO_FILTER }; - -plugin_info_t xine_plugin_info[] = { - /* type, API, "name", version, special_info, init_function */ - { PLUGIN_POST, 4, "denoise3d", XINE_VERSION_CODE, &denoise3d_special_info, &denoise3d_init_plugin }, - { PLUGIN_NONE, 0, "", 0, NULL, NULL } -}; -#endif - typedef struct post_plugin_denoise3d_s post_plugin_denoise3d_t; diff --git a/src/post/planar/eq.c b/src/post/planar/eq.c index e51fffe6d..e5991e7ea 100644 --- a/src/post/planar/eq.c +++ b/src/post/planar/eq.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: eq.c,v 1.5 2003/08/15 14:43:30 mroi Exp $ + * $Id: eq.c,v 1.6 2003/10/06 21:52:43 miguelfreitas Exp $ * * mplayer's eq (soft video equalizer) * Copyright (C) Richard Felker @@ -119,16 +119,6 @@ static void (*process)(unsigned char *dest, int dstride, unsigned char *src, int /* plugin class initialization function */ void *eq_init_plugin(xine_t *xine, void *); -#if 0 /* moved to planar.c */ -/* plugin catalog information */ -post_info_t eq_special_info = { XINE_POST_TYPE_VIDEO_FILTER }; - -plugin_info_t xine_plugin_info[] = { - /* type, API, "name", version, special_info, init_function */ - { PLUGIN_POST, 4, "eq", XINE_VERSION_CODE, &eq_special_info, &eq_init_plugin }, - { PLUGIN_NONE, 0, "", 0, NULL, NULL } -}; -#endif typedef struct post_plugin_eq_s post_plugin_eq_t; diff --git a/src/post/planar/eq2.c b/src/post/planar/eq2.c index a02303e55..866f3083b 100644 --- a/src/post/planar/eq2.c +++ b/src/post/planar/eq2.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: eq2.c,v 1.7 2003/08/19 18:33:43 mroi Exp $ + * $Id: eq2.c,v 1.8 2003/10/06 21:52:43 miguelfreitas Exp $ * * mplayer's eq2 (soft video equalizer) * Software equalizer (brightness, contrast, gamma, saturation) @@ -264,17 +264,6 @@ void set_saturation (vf_eq2_t *eq2, double s) /* plugin class initialization function */ void *eq2_init_plugin(xine_t *xine, void *); -#if 0 /* moved to planar.c */ -/* plugin catalog information */ -post_info_t eq2_special_info = { XINE_POST_TYPE_VIDEO_FILTER }; - -plugin_info_t xine_plugin_info[] = { - /* type, API, "name", version, special_info, init_function */ - { PLUGIN_POST, 4, "eq2", XINE_VERSION_CODE, &eq2_special_info, &eq2_init_plugin }, - { PLUGIN_NONE, 0, "", 0, NULL, NULL } -}; -#endif - typedef struct post_plugin_eq2_s post_plugin_eq2_t; /* diff --git a/src/post/planar/expand.c b/src/post/planar/expand.c index 91b1d15c4..ea7a6ee60 100644 --- a/src/post/planar/expand.c +++ b/src/post/planar/expand.c @@ -61,17 +61,6 @@ /* plugin class initialization function */ 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 }; - -plugin_info_t xine_plugin_info[] = { - /* type, API, "name", version, special_info, init_function */ - { PLUGIN_POST, 4, "expand", XINE_VERSION_CODE, &expand_special_info, &expand_init_plugin }, - { PLUGIN_NONE, 0, "", 0, NULL, NULL } -}; -#endif - /* plugin structures */ typedef struct expand_parameters_s { int enable_automatic_shift; diff --git a/src/post/planar/invert.c b/src/post/planar/invert.c index c81d3e12a..26bc4b7b9 100644 --- a/src/post/planar/invert.c +++ b/src/post/planar/invert.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: invert.c,v 1.12 2003/08/12 13:56:26 mroi Exp $ + * $Id: invert.c,v 1.13 2003/10/06 21:52:43 miguelfreitas Exp $ */ /* @@ -31,19 +31,6 @@ /* plugin class initialization function */ void *invert_init_plugin(xine_t *xine, void *); -#if 0 /* moved to planar.c */ - -/* plugin catalog information */ -post_info_t invert_special_info = { XINE_POST_TYPE_VIDEO_FILTER }; - -plugin_info_t xine_plugin_info[] = { - /* type, API, "name", version, special_info, init_function */ - { PLUGIN_POST, 4, "invert", XINE_VERSION_CODE, &invert_special_info, &invert_init_plugin }, - { PLUGIN_NONE, 0, "", 0, NULL, NULL } -}; - -#endif - /* plugin structure */ typedef struct post_invert_out_s post_invert_out_t; struct post_invert_out_s { diff --git a/src/post/planar/planar.c b/src/post/planar/planar.c index 7ab3ad521..89f9e76bb 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.2 2003/08/04 03:47:11 miguelfreitas Exp $ + * $Id: planar.c,v 1.3 2003/10/06 21:52:44 miguelfreitas Exp $ * * catalog for planar post plugins */ @@ -49,13 +49,13 @@ post_info_t unsharp_special_info = { XINE_POST_TYPE_VIDEO_FILTER }; plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_POST, 4, "expand", XINE_VERSION_CODE+1, &expand_special_info, &expand_init_plugin }, - { PLUGIN_POST, 4, "invert", XINE_VERSION_CODE+1, &invert_special_info, &invert_init_plugin }, - { PLUGIN_POST, 4, "eq", XINE_VERSION_CODE, &eq_special_info, &eq_init_plugin }, - { PLUGIN_POST, 4, "denoise3d", XINE_VERSION_CODE, &denoise3d_special_info, &denoise3d_init_plugin }, - { PLUGIN_POST, 4, "boxblur", XINE_VERSION_CODE, &boxblur_special_info, &boxblur_init_plugin }, - { PLUGIN_POST, 4, "eq2", XINE_VERSION_CODE, &eq2_special_info, &eq2_init_plugin }, - { PLUGIN_POST, 4, "unsharp", XINE_VERSION_CODE, &unsharp_special_info, &unsharp_init_plugin }, + { PLUGIN_POST, 5, "expand", XINE_VERSION_CODE+1, &expand_special_info, &expand_init_plugin }, + { PLUGIN_POST, 5, "invert", XINE_VERSION_CODE+1, &invert_special_info, &invert_init_plugin }, + { PLUGIN_POST, 5, "eq", XINE_VERSION_CODE, &eq_special_info, &eq_init_plugin }, + { PLUGIN_POST, 5, "denoise3d", XINE_VERSION_CODE, &denoise3d_special_info, &denoise3d_init_plugin }, + { PLUGIN_POST, 5, "boxblur", XINE_VERSION_CODE, &boxblur_special_info, &boxblur_init_plugin }, + { PLUGIN_POST, 5, "eq2", XINE_VERSION_CODE, &eq2_special_info, &eq2_init_plugin }, + { PLUGIN_POST, 5, "unsharp", XINE_VERSION_CODE, &unsharp_special_info, &unsharp_init_plugin }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; diff --git a/src/post/planar/unsharp.c b/src/post/planar/unsharp.c index 61defa672..499fba98f 100644 --- a/src/post/planar/unsharp.c +++ b/src/post/planar/unsharp.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: unsharp.c,v 1.6 2003/08/15 14:43:30 mroi Exp $ + * $Id: unsharp.c,v 1.7 2003/10/06 21:52:44 miguelfreitas Exp $ * * mplayer's unsharp * Copyright (C) 2002 Rémi Guyomarch <rguyom@pobox.com> @@ -130,17 +130,6 @@ static void unsharp( uint8_t *dst, uint8_t *src, int dstStride, int srcStride, i /* plugin class initialization function */ void *unsharp_init_plugin(xine_t *xine, void *); -#if 0 /* moved to planar.c */ -/* plugin catalog information */ -post_info_t unsharp_special_info = { XINE_POST_TYPE_VIDEO_FILTER }; - -plugin_info_t xine_plugin_info[] = { - /* type, API, "name", version, special_info, init_function */ - { PLUGIN_POST, 4, "unsharp", XINE_VERSION_CODE, &unsharp_special_info, &unsharp_init_plugin }, - { PLUGIN_NONE, 0, "", 0, NULL, NULL } -}; -#endif - typedef struct post_plugin_unsharp_s post_plugin_unsharp_t; /* |