Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
012dd8c9
Commit
012dd8c9
authored
Feb 02, 2017
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter: add midequalizer filter
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
e477f09d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
406 additions
and
1 deletion
+406
-1
Changelog
Changelog
+1
-0
filters.texi
doc/filters.texi
+11
-0
Makefile
libavfilter/Makefile
+1
-0
allfilters.c
libavfilter/allfilters.c
+1
-0
version.h
libavfilter/version.h
+1
-1
vf_midequalizer.c
libavfilter/vf_midequalizer.c
+391
-0
No files found.
Changelog
View file @
012dd8c9
...
...
@@ -20,6 +20,7 @@ version <next>:
- abitscope multimedia filter
- Scenarist Closed Captions demuxer and muxer
- threshold filter
- midequalizer filter
version 3.2:
- libopenmpt demuxer
...
...
doc/filters.texi
View file @
012dd8c9
...
...
@@ -9643,6 +9643,17 @@ Macroblock size. Default @code{16}.
Search parameter. Default @code{7}.
@end table
@section midequalizer
Apply Midway Image Equalization effect using two video streams.
This filter accepts the following option:
@table @option
@item planes
Set which planes to process. Default is @code{15}, which is all available planes.
@end table
@section minterpolate
Convert the video to specified frame rate using motion interpolation.
...
...
libavfilter/Makefile
View file @
012dd8c9
...
...
@@ -219,6 +219,7 @@ OBJS-$(CONFIG_MCDEINT_FILTER) += vf_mcdeint.o
OBJS-$(CONFIG_MERGEPLANES_FILTER)
+=
vf_mergeplanes.o
framesync.o
OBJS-$(CONFIG_MESTIMATE_FILTER)
+=
vf_mestimate.o
motion_estimation.o
OBJS-$(CONFIG_METADATA_FILTER)
+=
f_metadata.o
OBJS-$(CONFIG_MIDEQUALIZER_FILTER)
+=
vf_midequalizer.o
framesync.o
OBJS-$(CONFIG_MINTERPOLATE_FILTER)
+=
vf_minterpolate.o
motion_estimation.o
OBJS-$(CONFIG_MPDECIMATE_FILTER)
+=
vf_mpdecimate.o
OBJS-$(CONFIG_NEGATE_FILTER)
+=
vf_lut.o
...
...
libavfilter/allfilters.c
View file @
012dd8c9
...
...
@@ -235,6 +235,7 @@ void avfilter_register_all(void)
REGISTER_FILTER
(
MERGEPLANES
,
mergeplanes
,
vf
);
REGISTER_FILTER
(
MESTIMATE
,
mestimate
,
vf
);
REGISTER_FILTER
(
METADATA
,
metadata
,
vf
);
REGISTER_FILTER
(
MIDEQUALIZER
,
midequalizer
,
vf
);
REGISTER_FILTER
(
MINTERPOLATE
,
minterpolate
,
vf
);
REGISTER_FILTER
(
MPDECIMATE
,
mpdecimate
,
vf
);
REGISTER_FILTER
(
NEGATE
,
negate
,
vf
);
...
...
libavfilter/version.h
View file @
012dd8c9
...
...
@@ -30,7 +30,7 @@
#include "libavutil/version.h"
#define LIBAVFILTER_VERSION_MAJOR 6
#define LIBAVFILTER_VERSION_MINOR 7
2
#define LIBAVFILTER_VERSION_MINOR 7
3
#define LIBAVFILTER_VERSION_MICRO 100
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
...
...
libavfilter/vf_midequalizer.c
0 → 100644
View file @
012dd8c9
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment