1 /*
2  * This file is part of MPlayer.
3  *
4  * MPlayer is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * MPlayer is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18 
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <inttypes.h>
23 
24 #include "config.h"
25 #include "mp_msg.h"
26 #include "help_mp.h"
27 
28 #include "img_format.h"
29 #include "mp_image.h"
30 #include "vf.h"
31 #include "av_helpers.h"
32 
33 
34 
35 static int
vf_open(vf_instance_t * vf,char * args)36 vf_open(vf_instance_t *vf, char *args)
37 {
38   /* We don't have any args */
39   (void) args;
40 
41   mp_msg(MSGT_VFILTER,MSGL_FATAL, "lavcdeint has been removed, please use '-vf pp=fd' (same filter) or '-vf yadif'\n");
42 
43 
44   return 0;
45 }
46 
47 
48 const vf_info_t vf_info_lavcdeint = {
49     "libavcodec's deinterlacing filter",
50     "lavcdeint",
51     "Joe Rabinoff",
52     "libavcodec's internal deinterlacer, in case you don't like "
53       "the builtin ones (invoked with -pp or -npp)",
54     vf_open,
55     NULL
56 };
57 
58 
59 //===========================================================================//
60