Commit 6cb01c9d authored by Stefano Sabatini's avatar Stefano Sabatini

lavfi/mp: remove remove_logo wrapper

removelogo has been ported to libavfilter, and the wrapper was not
working.
parent 2f83681c
...@@ -1887,7 +1887,6 @@ The list of the currently supported filters follows: ...@@ -1887,7 +1887,6 @@ The list of the currently supported filters follows:
@item pullup @item pullup
@item qp @item qp
@item rectangle @item rectangle
@item remove-logo
@item rotate @item rotate
@item sab @item sab
@item screenshot @item screenshot
......
...@@ -155,7 +155,6 @@ OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_pp7.o ...@@ -155,7 +155,6 @@ OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_pp7.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_pullup.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_pullup.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_qp.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_qp.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_rectangle.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_rectangle.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_remove_logo.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_rotate.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_rotate.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_sab.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_sab.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_screenshot.o OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_screenshot.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 67 #define LIBAVFILTER_VERSION_MINOR 67
#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, \
......
...@@ -168,7 +168,6 @@ extern const vf_info_t vf_info_pp; ...@@ -168,7 +168,6 @@ extern const vf_info_t vf_info_pp;
extern const vf_info_t vf_info_pullup; extern const vf_info_t vf_info_pullup;
extern const vf_info_t vf_info_qp; extern const vf_info_t vf_info_qp;
extern const vf_info_t vf_info_rectangle; extern const vf_info_t vf_info_rectangle;
extern const vf_info_t vf_info_remove_logo;
extern const vf_info_t vf_info_rotate; extern const vf_info_t vf_info_rotate;
extern const vf_info_t vf_info_sab; extern const vf_info_t vf_info_sab;
extern const vf_info_t vf_info_scale; extern const vf_info_t vf_info_scale;
...@@ -229,7 +228,6 @@ static const vf_info_t* const filters[]={ ...@@ -229,7 +228,6 @@ static const vf_info_t* const filters[]={
&vf_info_pullup, &vf_info_pullup,
&vf_info_qp, &vf_info_qp,
&vf_info_rectangle, &vf_info_rectangle,
&vf_info_remove_logo,
&vf_info_rotate, &vf_info_rotate,
&vf_info_sab, &vf_info_sab,
&vf_info_screenshot, &vf_info_screenshot,
......
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