Commit f0a149e5 authored by Paul B Mahol's avatar Paul B Mahol

lavfi: remove bad inverse telecine filters

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent a5ebd2d9
...@@ -4303,16 +4303,13 @@ the named filter. ...@@ -4303,16 +4303,13 @@ the named filter.
The list of the currently supported filters follows: The list of the currently supported filters follows:
@table @var @table @var
@item detc
@item dint @item dint
@item divtc
@item down3dright @item down3dright
@item eq2 @item eq2
@item eq @item eq
@item fil @item fil
@item fspp @item fspp
@item ilpack @item ilpack
@item ivtc
@item mcdeint @item mcdeint
@item ow @item ow
@item perspective @item perspective
......
...@@ -192,17 +192,13 @@ OBJS-$(CONFIG_NULLSINK_FILTER) += vsink_nullsink.o ...@@ -192,17 +192,13 @@ OBJS-$(CONFIG_NULLSINK_FILTER) += vsink_nullsink.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/mp_image.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/mp_image.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/img_format.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/img_format.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_detc.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_dint.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_dint.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_divtc.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_down3dright.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_down3dright.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_eq2.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_eq2.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_eq.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_eq.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_fil.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_fil.o
#OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_filmdint.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_fspp.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_fspp.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_ilpack.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_ilpack.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_ivtc.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_mcdeint.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_mcdeint.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_ow.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_ow.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_perspective.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_perspective.o
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#define LIBAVFILTER_VERSION_MAJOR 3 #define LIBAVFILTER_VERSION_MAJOR 3
#define LIBAVFILTER_VERSION_MINOR 56 #define LIBAVFILTER_VERSION_MINOR 56
#define LIBAVFILTER_VERSION_MICRO 101 #define LIBAVFILTER_VERSION_MICRO 102
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \ LIBAVFILTER_VERSION_MINOR, \
......
...@@ -123,17 +123,13 @@ static const struct { ...@@ -123,17 +123,13 @@ static const struct {
{0, AV_PIX_FMT_NONE} {0, AV_PIX_FMT_NONE}
}; };
extern const vf_info_t ff_vf_info_detc;
extern const vf_info_t ff_vf_info_dint; extern const vf_info_t ff_vf_info_dint;
extern const vf_info_t ff_vf_info_divtc;
extern const vf_info_t ff_vf_info_down3dright; extern const vf_info_t ff_vf_info_down3dright;
extern const vf_info_t ff_vf_info_eq2; extern const vf_info_t ff_vf_info_eq2;
extern const vf_info_t ff_vf_info_eq; extern const vf_info_t ff_vf_info_eq;
extern const vf_info_t ff_vf_info_fil; extern const vf_info_t ff_vf_info_fil;
//extern const vf_info_t ff_vf_info_filmdint;
extern const vf_info_t ff_vf_info_fspp; extern const vf_info_t ff_vf_info_fspp;
extern const vf_info_t ff_vf_info_ilpack; extern const vf_info_t ff_vf_info_ilpack;
extern const vf_info_t ff_vf_info_ivtc;
extern const vf_info_t ff_vf_info_mcdeint; extern const vf_info_t ff_vf_info_mcdeint;
extern const vf_info_t ff_vf_info_ow; extern const vf_info_t ff_vf_info_ow;
extern const vf_info_t ff_vf_info_perspective; extern const vf_info_t ff_vf_info_perspective;
...@@ -149,17 +145,13 @@ extern const vf_info_t ff_vf_info_uspp; ...@@ -149,17 +145,13 @@ extern const vf_info_t ff_vf_info_uspp;
static const vf_info_t* const filters[]={ static const vf_info_t* const filters[]={
&ff_vf_info_detc,
&ff_vf_info_dint, &ff_vf_info_dint,
&ff_vf_info_divtc,
&ff_vf_info_down3dright, &ff_vf_info_down3dright,
&ff_vf_info_eq2, &ff_vf_info_eq2,
&ff_vf_info_eq, &ff_vf_info_eq,
&ff_vf_info_fil, &ff_vf_info_fil,
// &ff_vf_info_filmdint, cmmx.h vd.h ‘opt_screen_size_x’
&ff_vf_info_fspp, &ff_vf_info_fspp,
&ff_vf_info_ilpack, &ff_vf_info_ilpack,
&ff_vf_info_ivtc,
&ff_vf_info_mcdeint, &ff_vf_info_mcdeint,
&ff_vf_info_ow, &ff_vf_info_ow,
&ff_vf_info_perspective, &ff_vf_info_perspective,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment