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
8ef163ba
Commit
8ef163ba
authored
May 03, 2019
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter: add xmedian filter
parent
87a54e15
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
365 additions
and
1 deletion
+365
-1
Changelog
Changelog
+1
-0
filters.texi
doc/filters.texi
+14
-0
Makefile
libavfilter/Makefile
+1
-0
allfilters.c
libavfilter/allfilters.c
+1
-0
version.h
libavfilter/version.h
+1
-1
vf_xmedian.c
libavfilter/vf_xmedian.c
+347
-0
No files found.
Changelog
View file @
8ef163ba
...
...
@@ -28,6 +28,7 @@ version <next>:
- asoftclip filter
- Support decoding of HEVC 4:4:4 content in vdpau
- colorhold filter
- xmedian filter
version 4.1:
...
...
doc/filters.texi
View file @
8ef163ba
...
...
@@ -18418,6 +18418,20 @@ Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
Default is @code{3}.
@end table
@section xmedian
Pick median pixels from several input videos.
The filter accept the following options:
@table @option
@item nb_inputs
Set number of inputs. This must be odd number.
Default is 3. Allowed range is from 3 to 255.
@item planes
Set which planes to filter. Default value is @code{15}, by which all planes are processed.
@end table
@section xstack
Stack video inputs into custom layout.
...
...
libavfilter/Makefile
View file @
8ef163ba
...
...
@@ -421,6 +421,7 @@ OBJS-$(CONFIG_W3FDIF_FILTER) += vf_w3fdif.o
OBJS-$(CONFIG_WAVEFORM_FILTER)
+=
vf_waveform.o
OBJS-$(CONFIG_WEAVE_FILTER)
+=
vf_weave.o
OBJS-$(CONFIG_XBR_FILTER)
+=
vf_xbr.o
OBJS-$(CONFIG_XMEDIAN_FILTER)
+=
vf_xmedian.o
framesync.o
OBJS-$(CONFIG_XSTACK_FILTER)
+=
vf_stack.o
framesync.o
OBJS-$(CONFIG_YADIF_FILTER)
+=
vf_yadif.o
yadif_common.o
OBJS-$(CONFIG_YADIF_CUDA_FILTER)
+=
vf_yadif_cuda.o
vf_yadif_cuda.ptx.o
\
...
...
libavfilter/allfilters.c
View file @
8ef163ba
...
...
@@ -400,6 +400,7 @@ extern AVFilter ff_vf_w3fdif;
extern
AVFilter
ff_vf_waveform
;
extern
AVFilter
ff_vf_weave
;
extern
AVFilter
ff_vf_xbr
;
extern
AVFilter
ff_vf_xmedian
;
extern
AVFilter
ff_vf_xstack
;
extern
AVFilter
ff_vf_yadif
;
extern
AVFilter
ff_vf_yadif_cuda
;
...
...
libavfilter/version.h
View file @
8ef163ba
...
...
@@ -30,7 +30,7 @@
#include "libavutil/version.h"
#define LIBAVFILTER_VERSION_MAJOR 7
#define LIBAVFILTER_VERSION_MINOR 5
1
#define LIBAVFILTER_VERSION_MINOR 5
2
#define LIBAVFILTER_VERSION_MICRO 100
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
...
...
libavfilter/vf_xmedian.c
0 → 100644
View file @
8ef163ba
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