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
dd7d6034
Commit
dd7d6034
authored
Dec 11, 2018
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_paletteuse: fix flags for alpha_threshold option
parent
9c49933a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vf_paletteuse.c
libavfilter/vf_paletteuse.c
+1
-1
No files found.
libavfilter/vf_paletteuse.c
View file @
dd7d6034
...
@@ -119,7 +119,7 @@ static const AVOption paletteuse_options[] = {
...
@@ -119,7 +119,7 @@ static const AVOption paletteuse_options[] = {
{
"diff_mode"
,
"set frame difference mode"
,
OFFSET
(
diff_mode
),
AV_OPT_TYPE_INT
,
{.
i64
=
DIFF_MODE_NONE
},
0
,
NB_DIFF_MODE
-
1
,
FLAGS
,
"diff_mode"
},
{
"diff_mode"
,
"set frame difference mode"
,
OFFSET
(
diff_mode
),
AV_OPT_TYPE_INT
,
{.
i64
=
DIFF_MODE_NONE
},
0
,
NB_DIFF_MODE
-
1
,
FLAGS
,
"diff_mode"
},
{
"rectangle"
,
"process smallest different rectangle"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
DIFF_MODE_RECTANGLE
},
INT_MIN
,
INT_MAX
,
FLAGS
,
"diff_mode"
},
{
"rectangle"
,
"process smallest different rectangle"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
DIFF_MODE_RECTANGLE
},
INT_MIN
,
INT_MAX
,
FLAGS
,
"diff_mode"
},
{
"new"
,
"take new palette for each output frame"
,
OFFSET
(
new
),
AV_OPT_TYPE_BOOL
,
{.
i64
=
0
},
0
,
1
,
FLAGS
},
{
"new"
,
"take new palette for each output frame"
,
OFFSET
(
new
),
AV_OPT_TYPE_BOOL
,
{.
i64
=
0
},
0
,
1
,
FLAGS
},
{
"alpha_threshold"
,
"set the alpha threshold for transparency"
,
OFFSET
(
trans_thresh
),
AV_OPT_TYPE_INT
,
{.
i64
=
128
},
0
,
255
},
{
"alpha_threshold"
,
"set the alpha threshold for transparency"
,
OFFSET
(
trans_thresh
),
AV_OPT_TYPE_INT
,
{.
i64
=
128
},
0
,
255
,
FLAGS
},
/* following are the debug options, not part of the official API */
/* following are the debug options, not part of the official API */
{
"debug_kdtree"
,
"save Graphviz graph of the kdtree in specified file"
,
OFFSET
(
dot_filename
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
CHAR_MIN
,
CHAR_MAX
,
FLAGS
},
{
"debug_kdtree"
,
"save Graphviz graph of the kdtree in specified file"
,
OFFSET
(
dot_filename
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
CHAR_MIN
,
CHAR_MAX
,
FLAGS
},
...
...
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