diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-06-13 12:30:10 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-06-13 12:30:10 +0000 |
commit | 6baf9e8e4e04e4b62bb31fed5f9a4d0edca67ac6 (patch) | |
tree | a4f46e10c68c80bb8b28939a50bb3b5c8315cab4 | |
parent | 89e212e2ffe2493063d15e2e180933be59b5eaec (diff) | |
download | xine-lib-6baf9e8e4e04e4b62bb31fed5f9a4d0edca67ac6.tar.gz xine-lib-6baf9e8e4e04e4b62bb31fed5f9a4d0edca67ac6.tar.bz2 |
have "linear" as default method so non-x86 users can use it
(i should also port our linearblend c code to new deinterlacer sometime)
CVS patchset: 5037
CVS date: 2003/06/13 12:30:10
-rw-r--r-- | src/post/deinterlace/xine_plugin.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/post/deinterlace/xine_plugin.c b/src/post/deinterlace/xine_plugin.c index 62967c490..43aeb1d5f 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.1 2003/06/13 01:48:10 miguelfreitas Exp $ + * $Id: xine_plugin.c,v 1.2 2003/06/13 12:30:10 miguelfreitas Exp $ * * advanced video deinterlacer plugin * Jun/2003 by Miguel Freitas @@ -233,18 +233,16 @@ static void *deinterlace_init_plugin(xine_t *xine, void *data) setup_speedy_calls(0); - greedy_plugin_init(); - - linearblend_plugin_init(); - linear_plugin_init(); + linearblend_plugin_init(); + greedy_plugin_init(); + greedy2frame_plugin_init(); weave_plugin_init(); double_plugin_init(); vfir_plugin_init(); /* scalerbob_plugin_init(); -- not supported properly, use onefieldxv */ - greedy2frame_plugin_init(); /* dscaler_greedyh_plugin_init(); dscaler_twoframe_plugin_init(); @@ -288,7 +286,7 @@ static post_plugin_t *deinterlace_open_plugin(post_class_t *class_gen, int input } this->stream = NULL; - this->cur_method = 7; + this->cur_method = 1; this->pulldown = 1; this->enabled = 1; this->framerate_mode = 0; |