diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-10-06 21:52:42 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-10-06 21:52:42 +0000 |
commit | 2e29bd1fe0c87addc57755fb9812569e75cd4e39 (patch) | |
tree | ef23e232f9d63823f44bb6c4ffd604989cc222a0 /src/post/planar/eq.c | |
parent | c3a7991dd5e1b7a1013afd4e2c154fc870553c1c (diff) | |
download | xine-lib-2e29bd1fe0c87addc57755fb9812569e75cd4e39.tar.gz xine-lib-2e29bd1fe0c87addc57755fb9812569e75cd4e39.tar.bz2 |
- add XvMC support
- bump vo and post interface versions
obs: video_out_xvmc.c needs some more work, see todo.
CVS patchset: 5459
CVS date: 2003/10/06 21:52:42
Diffstat (limited to 'src/post/planar/eq.c')
-rw-r--r-- | src/post/planar/eq.c | 12 |
1 files changed, 1 insertions, 11 deletions
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; |