1 /**
2  * Dummy plugin for 'scalerbob' support.
3  *
4  * Copyright (C) 2002 Billy Biggs <vektor@dumbterm.net>.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21 
22 
23 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
26 
27 #include <stdio.h>
28 
29 #if HAVE_INTTYPES_H
30 #include <inttypes.h>
31 #else
32 #include <stdint.h>
33 #endif
34 
35 #include "plugins.h"
36 #include "speedy.h"
37 #include "deinterlace.h"
38 
39 static const deinterlace_method_t scalerbobmethod =
40 {
41     "Scaler Bob",
42     "ScalerBob",
43 /*
44     "Television: Half Resolution",
45     "TelevisionHalf",
46 */
47     1,
48     0,
49     1,
50     1,
51     0,
52     0,
53     0,
54     0,
55     "Expands each field independently without blurring or copying in time.  "
56     "Use this if you want TV-quality with low CPU, and you have configured "
57     "your monitor to run at the refresh rate of the video signal.\n"
58     "\n"
59     "Half resolution is poor quality but low CPU requirements for watching "
60     "in a small window."
61 };
62 
scalerbob_get_method(void)63 const deinterlace_method_t *scalerbob_get_method( void )
64 {
65     return &scalerbobmethod;
66 }
67 
68