diff options
-rw-r--r-- | xine/post.h | 18 | ||||
-rw-r--r-- | xine/vo_hook.c | 8 | ||||
-rw-r--r-- | xine/vo_hook.h | 8 | ||||
-rw-r--r-- | xine/vo_post.h | 8 |
4 files changed, 21 insertions, 21 deletions
diff --git a/xine/post.h b/xine/post.h index 88f3916e..355e8e2c 100644 --- a/xine/post.h +++ b/xine/post.h @@ -1,18 +1,18 @@ -/* +/* * Copyright (C) 2003 by Dirk Meyer - * + * * This file is part of xine, a unix video player. - * + * * xine is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - * + * * xine is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA @@ -79,21 +79,21 @@ void vpplugin_parse_and_store_post(post_plugins_t *fe, const char *post); void applugin_parse_and_store_post(post_plugins_t *fe, const char *post); /* enable (and load if not loaded), but don't rewire */ -/* result indicates only unwiring condition, not enable result */ +/* result indicates only unwiring condition, not enable result */ /* -> if result <> 0, something was enabled and post chain is unwired */ int vpplugin_enable_post(post_plugins_t *fe, const char *name, int *found); int applugin_enable_post(post_plugins_t *fe, const char *name, int *found); /* disable (and unwire if found), but don't unload */ -/* result indicates only unwiring condition, not disable result */ +/* result indicates only unwiring condition, not disable result */ int vpplugin_disable_post(post_plugins_t *fe, const char *name); int applugin_disable_post(post_plugins_t *fe, const char *name); /* unload (and unwire) plugin(s) */ -/* result indicates only unwiring condition, not unload result */ +/* result indicates only unwiring condition, not unload result */ int vpplugin_unload_post(post_plugins_t *fe, const char *name); int applugin_unload_post(post_plugins_t *fe, const char *name); -#endif +#endif /* end of post.h */ diff --git a/xine/vo_hook.c b/xine/vo_hook.c index ccc5aef3..8b05dc33 100644 --- a/xine/vo_hook.c +++ b/xine/vo_hook.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: vo_hook.c,v 1.2 2008-11-21 20:07:59 phintuka Exp $ + * $Id: vo_hook.c,v 1.3 2008-12-14 01:14:54 phintuka Exp $ * */ @@ -62,8 +62,8 @@ DEF_HANDLER0(uint32_t, get_capabilities); DEF_HANDLER0(vo_frame_t*, alloc_frame); void vo_def_update_frame_format (vo_driver_t *self, vo_frame_t *img, - uint32_t width, uint32_t height, - double ratio, int format, int flags) + uint32_t width, uint32_t height, + double ratio, int format, int flags) { vo_driver_hook_t *this = (vo_driver_hook_t *) self; return this->orig_driver-> update_frame_format (this->orig_driver, img, width, height, ratio, format, flags); @@ -159,7 +159,7 @@ int wire_video_driver(xine_video_port_t *video_port, vo_driver_t *hook) /* append original driver chain to new driver */ ((vo_driver_hook_t *)hook)->orig_driver = video_port->driver; - + /* push new driver to start of driver chain */ video_port->driver = hook; ((vos_t*)video_port)->driver = hook; diff --git a/xine/vo_hook.h b/xine/vo_hook.h index fa98a62c..0de93fd0 100644 --- a/xine/vo_hook.h +++ b/xine/vo_hook.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: vo_hook.h,v 1.2 2008-11-21 20:07:59 phintuka Exp $ + * $Id: vo_hook.h,v 1.3 2008-12-14 01:14:54 phintuka Exp $ * */ @@ -13,9 +13,9 @@ #include <xine/video_out.h> -/* - * synchronous video post plugins - * internal API +/* + * synchronous video post plugins + * internal API */ diff --git a/xine/vo_post.h b/xine/vo_post.h index 7fabf175..8ed7b076 100644 --- a/xine/vo_post.h +++ b/xine/vo_post.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: vo_post.h,v 1.2 2008-11-21 20:07:59 phintuka Exp $ + * $Id: vo_post.h,v 1.3 2008-12-14 01:19:21 phintuka Exp $ * */ @@ -13,9 +13,9 @@ #include <xine/video_out.h> -/* - * synchronous video post plugins - * public API +/* + * synchronous video post plugins + * public API */ /* Wire / unwire hook chain to video port */ |