Commit 5eeecde8 authored by Stefano Sabatini's avatar Stefano Sabatini

lavfi/mp: remove 2xsai wrapped filter

It was ported to a native libavfilter filter.
parent b7a7830d
...@@ -1865,7 +1865,6 @@ the named filter. ...@@ -1865,7 +1865,6 @@ the named filter.
The list of the currently supported filters follows: The list of the currently supported filters follows:
@table @var @table @var
@item 2xsai
@item decimate @item decimate
@item denoise3d @item denoise3d
@item detc @item detc
......
...@@ -120,7 +120,6 @@ OBJS-$(CONFIG_NULLSINK_FILTER) += vsink_nullsink.o ...@@ -120,7 +120,6 @@ 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_2xsai.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_decimate.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_decimate.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_denoise3d.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_denoise3d.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_detc.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_detc.o
......
This diff is collapsed.
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#define LIBAVFILTER_VERSION_MAJOR 2 #define LIBAVFILTER_VERSION_MAJOR 2
#define LIBAVFILTER_VERSION_MINOR 69 #define LIBAVFILTER_VERSION_MINOR 69
#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, \
......
...@@ -121,7 +121,6 @@ static const struct { ...@@ -121,7 +121,6 @@ static const struct {
//copied from vf.c //copied from vf.c
extern const vf_info_t vf_info_1bpp; extern const vf_info_t vf_info_1bpp;
extern const vf_info_t vf_info_2xsai;
extern const vf_info_t vf_info_ass; extern const vf_info_t vf_info_ass;
extern const vf_info_t vf_info_bmovl; extern const vf_info_t vf_info_bmovl;
extern const vf_info_t vf_info_crop; extern const vf_info_t vf_info_crop;
...@@ -192,7 +191,6 @@ extern const vf_info_t vf_info_zrmjpeg; ...@@ -192,7 +191,6 @@ extern const vf_info_t vf_info_zrmjpeg;
static const vf_info_t* const filters[]={ static const vf_info_t* const filters[]={
&vf_info_2xsai,
&vf_info_decimate, &vf_info_decimate,
&vf_info_denoise3d, &vf_info_denoise3d,
&vf_info_detc, &vf_info_detc,
......
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