Commit 7ca2f8b1 authored by Stefano Sabatini's avatar Stefano Sabatini

lavfi/mp: drop mp=kerndeint filter

The filter has been natively integrated into libavfilter.
parent 8c85a9f0
...@@ -3628,7 +3628,6 @@ The list of the currently supported filters follows: ...@@ -3628,7 +3628,6 @@ The list of the currently supported filters follows:
@item harddup @item harddup
@item ilpack @item ilpack
@item ivtc @item ivtc
@item kerndeint
@item mcdeint @item mcdeint
@item ow @item ow
@item perspective @item perspective
......
...@@ -191,7 +191,6 @@ OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_fspp.o ...@@ -191,7 +191,6 @@ OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_fspp.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_harddup.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_harddup.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_ivtc.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_kerndeint.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_mcdeint.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_mcdeint.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_noise.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_noise.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_ow.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_ow.o
......
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 38 #define LIBAVFILTER_VERSION_MINOR 38
#define LIBAVFILTER_VERSION_MICRO 102 #define LIBAVFILTER_VERSION_MICRO 103
#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, \
......
...@@ -134,7 +134,6 @@ extern const vf_info_t ff_vf_info_fspp; ...@@ -134,7 +134,6 @@ extern const vf_info_t ff_vf_info_fspp;
extern const vf_info_t ff_vf_info_harddup; extern const vf_info_t ff_vf_info_harddup;
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_ivtc;
extern const vf_info_t ff_vf_info_kerndeint;
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_noise; extern const vf_info_t ff_vf_info_noise;
extern const vf_info_t ff_vf_info_ow; extern const vf_info_t ff_vf_info_ow;
...@@ -165,7 +164,6 @@ static const vf_info_t* const filters[]={ ...@@ -165,7 +164,6 @@ static const vf_info_t* const filters[]={
&ff_vf_info_harddup, &ff_vf_info_harddup,
&ff_vf_info_ilpack, &ff_vf_info_ilpack,
&ff_vf_info_ivtc, &ff_vf_info_ivtc,
&ff_vf_info_kerndeint,
&ff_vf_info_mcdeint, &ff_vf_info_mcdeint,
&ff_vf_info_noise, &ff_vf_info_noise,
&ff_vf_info_ow, &ff_vf_info_ow,
......
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