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
fad62eeb
Commit
fad62eeb
authored
Dec 27, 2019
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_neighbor: add support for commands
parent
f37bfd3f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
filters.texi
doc/filters.texi
+16
-0
vf_neighbor.c
libavfilter/vf_neighbor.c
+2
-1
No files found.
doc/filters.texi
View file @
fad62eeb
...
...
@@ -8632,6 +8632,10 @@ Limit the maximum change for each plane, default is 65535.
If 0, plane will remain unchanged.
@end table
@subsection Commands
This filter supports the all above options as @ref{commands}.
@section deflicker
Remove temporal frame luminance variations.
...
...
@@ -8973,6 +8977,10 @@ Flags to local 3x3 coordinates maps like this:
6 7 8
@end table
@subsection Commands
This filter supports the all above options as @ref{commands}.
@section displace
Displace pixels as indicated by second and third input stream.
...
...
@@ -10121,6 +10129,10 @@ Flags to local 3x3 coordinates maps like this:
6 7 8
@end table
@subsection Commands
This filter supports the all above options as @ref{commands}.
@section extractplanes
Extract color channel components from input video stream into
...
...
@@ -12186,6 +12198,10 @@ Limit the maximum change for each plane, default is 65535.
If 0, plane will remain unchanged.
@end table
@subsection Commands
This filter supports the all above options as @ref{commands}.
@section interlace
Simple interlacing filter from progressive contents. This interleaves upper (or
...
...
libavfilter/vf_neighbor.c
View file @
fad62eeb
...
...
@@ -353,7 +353,7 @@ static const AVFilterPad neighbor_outputs[] = {
};
#define OFFSET(x) offsetof(NContext, x)
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
|AV_OPT_FLAG_RUNTIME_PARAM
#define DEFINE_NEIGHBOR_FILTER(name_, description_) \
AVFILTER_DEFINE_CLASS(name_); \
...
...
@@ -368,6 +368,7 @@ AVFilter ff_vf_##name_ = { \
.outputs = neighbor_outputs, \
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC| \
AVFILTER_FLAG_SLICE_THREADS, \
.process_command = ff_filter_process_command, \
}
#if CONFIG_EROSION_FILTER
...
...
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