Commit 9f85c273 authored by Arwa Arif's avatar Arwa Arif Committed by Paul B Mahol

Delete mp=uspp

parent 2a8eb0d1
...@@ -6120,7 +6120,6 @@ The list of the currently supported filters follows: ...@@ -6120,7 +6120,6 @@ The list of the currently supported filters follows:
@item ilpack @item ilpack
@item pp7 @item pp7
@item softpulldown @item softpulldown
@item uspp
@end table @end table
The parameter syntax and behavior for the listed filters are the same The parameter syntax and behavior for the listed filters are the same
......
...@@ -227,7 +227,6 @@ OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_fspp.o ...@@ -227,7 +227,6 @@ 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_pp7.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
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_uspp.o
# multimedia filters # multimedia filters
OBJS-$(CONFIG_AVECTORSCOPE_FILTER) += avf_avectorscope.o OBJS-$(CONFIG_AVECTORSCOPE_FILTER) += avf_avectorscope.o
......
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 3 #define LIBAVFILTER_VERSION_MINOR 3
#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, \
......
...@@ -131,8 +131,6 @@ extern const vf_info_t ff_vf_info_fspp; ...@@ -131,8 +131,6 @@ 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_pp7; 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;
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_eq2, &ff_vf_info_eq2,
...@@ -141,8 +139,6 @@ static const vf_info_t* const filters[]={ ...@@ -141,8 +139,6 @@ static const vf_info_t* const filters[]={
&ff_vf_info_ilpack, &ff_vf_info_ilpack,
&ff_vf_info_pp7, &ff_vf_info_pp7,
&ff_vf_info_softpulldown, &ff_vf_info_softpulldown,
&ff_vf_info_uspp,
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