Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Releases
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Westerfeld
ffmpeg
Commits
4fcfecdd
Commit
4fcfecdd
authored
Dec 19, 2020
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_maskedclamp: add support for commands
parent
d6a356f1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
filters.texi
doc/filters.texi
+4
-0
vf_maskedclamp.c
libavfilter/vf_maskedclamp.c
+2
-1
No files found.
doc/filters.texi
View file @
4fcfecdd
...
...
@@ -13971,6 +13971,10 @@ copied from first stream.
By default value 0xf, all planes will be processed.
@end table
@subsection Commands
This filter supports the all above options as @ref{commands}.
@section maskedmax
Merge the second and third input stream into output stream using absolute differences
...
...
libavfilter/vf_maskedclamp.c
View file @
4fcfecdd
...
...
@@ -29,7 +29,7 @@
#include "maskedclamp.h"
#define OFFSET(x) offsetof(MaskedClampContext, 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
typedef
struct
ThreadData
{
AVFrame
*
b
,
*
o
,
*
m
,
*
d
;
...
...
@@ -327,4 +327,5 @@ AVFilter ff_vf_maskedclamp = {
.
outputs
=
maskedclamp_outputs
,
.
priv_class
=
&
maskedclamp_class
,
.
flags
=
AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
|
AVFILTER_FLAG_SLICE_THREADS
,
.
process_command
=
ff_filter_process_command
,
};
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