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

lavfi: remove mp=ilpack

Filter does not work, asserts here.
scale=interl=1,format=yuv422p should be used instead.
Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 1013c15f
...@@ -6238,7 +6238,6 @@ The list of the currently supported filters follows: ...@@ -6238,7 +6238,6 @@ The list of the currently supported filters follows:
@table @var @table @var
@item eq2 @item eq2
@item eq @item eq
@item ilpack
@item softpulldown @item softpulldown
@end table @end table
......
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 8 #define LIBAVFILTER_VERSION_MINOR 8
#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, \
......
...@@ -127,13 +127,11 @@ static const struct { ...@@ -127,13 +127,11 @@ 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_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_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