Browse Source

lavfi/mp: drop mp=fspp filter

It has been ported to libavfilter.
tags/n2.6
Stefano Sabatini 10 years ago
parent
commit
a51c78c65d
5 changed files with 1 additions and 2129 deletions
  1. +0
    -1
      doc/filters.texi
  2. +0
    -1
      libavfilter/Makefile
  3. +0
    -2124
      libavfilter/libmpcodecs/vf_fspp.c
  4. +1
    -1
      libavfilter/version.h
  5. +0
    -2
      libavfilter/vf_mp.c

+ 0
- 1
doc/filters.texi View File

@@ -6216,7 +6216,6 @@ The list of the currently supported filters follows:
@table @var @table @var
@item eq2 @item eq2
@item eq @item eq
@item fspp
@item ilpack @item ilpack
@item pp7 @item pp7
@item softpulldown @item softpulldown


+ 0
- 1
libavfilter/Makefile View File

@@ -225,7 +225,6 @@ 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_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_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


+ 0
- 2124
libavfilter/libmpcodecs/vf_fspp.c
File diff suppressed because it is too large
View File


+ 1
- 1
libavfilter/version.h View File

@@ -31,7 +31,7 @@


#define LIBAVFILTER_VERSION_MAJOR 5 #define LIBAVFILTER_VERSION_MAJOR 5
#define LIBAVFILTER_VERSION_MINOR 5 #define LIBAVFILTER_VERSION_MINOR 5
#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, \


+ 0
- 2
libavfilter/vf_mp.c View File

@@ -127,7 +127,6 @@ 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_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;
@@ -135,7 +134,6 @@ 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_fspp,
&ff_vf_info_ilpack, &ff_vf_info_ilpack,
&ff_vf_info_pp7, &ff_vf_info_pp7,
&ff_vf_info_softpulldown, &ff_vf_info_softpulldown,


Loading…
Cancel
Save