Commit 8c7e512a authored by Arwa Arif's avatar Arwa Arif Committed by Stefano Sabatini

lavfi: remove mp=pp7

The filter was ported to a native libavfilter filter in
a299cd5a.
Signed-off-by: 's avatarStefano Sabatini <stefasab@gmail.com>
parent 57ede2a5
...@@ -6239,7 +6239,6 @@ The list of the currently supported filters follows: ...@@ -6239,7 +6239,6 @@ The list of the currently supported filters follows:
@item eq2 @item eq2
@item eq @item eq
@item ilpack @item ilpack
@item pp7
@item softpulldown @item softpulldown
@end table @end table
......
...@@ -228,7 +228,6 @@ OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/img_format.o ...@@ -228,7 +228,6 @@ OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/img_format.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_ilpack.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_ilpack.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_pp7.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_softpulldown.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_softpulldown.o
# multimedia filters # multimedia filters
......
This diff is collapsed.
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
#define LIBAVFILTER_VERSION_MAJOR 5 #define LIBAVFILTER_VERSION_MAJOR 5
#define LIBAVFILTER_VERSION_MINOR 7 #define LIBAVFILTER_VERSION_MINOR 7
#define LIBAVFILTER_VERSION_MICRO 100 #define LIBAVFILTER_VERSION_MICRO 101
#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, \
......
...@@ -128,14 +128,12 @@ static const struct { ...@@ -128,14 +128,12 @@ static const struct {
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_ilpack; extern const vf_info_t ff_vf_info_ilpack;
extern const vf_info_t ff_vf_info_pp7;
extern const vf_info_t ff_vf_info_softpulldown; extern const vf_info_t ff_vf_info_softpulldown;
static const vf_info_t* const filters[]={ static const vf_info_t* const filters[]={
&ff_vf_info_eq2, &ff_vf_info_eq2,
&ff_vf_info_eq, &ff_vf_info_eq,
&ff_vf_info_ilpack, &ff_vf_info_ilpack,
&ff_vf_info_pp7,
&ff_vf_info_softpulldown, &ff_vf_info_softpulldown,
NULL NULL
}; };
......
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