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
513fcd41
Commit
513fcd41
authored
Oct 04, 2015
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/ebur128: use AV_OPT_TYPE_BOOL for video option
parent
4f721bfd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
f_ebur128.c
libavfilter/f_ebur128.c
+1
-1
No files found.
libavfilter/f_ebur128.c
View file @
513fcd41
...
...
@@ -154,7 +154,7 @@ enum {
#define V AV_OPT_FLAG_VIDEO_PARAM
#define F AV_OPT_FLAG_FILTERING_PARAM
static
const
AVOption
ebur128_options
[]
=
{
{
"video"
,
"set video output"
,
OFFSET
(
do_video
),
AV_OPT_TYPE_
INT
,
{.
i64
=
0
},
0
,
1
,
V
|
F
},
{
"video"
,
"set video output"
,
OFFSET
(
do_video
),
AV_OPT_TYPE_
BOOL
,
{.
i64
=
0
},
0
,
1
,
V
|
F
},
{
"size"
,
"set video size"
,
OFFSET
(
w
),
AV_OPT_TYPE_IMAGE_SIZE
,
{.
str
=
"640x480"
},
0
,
0
,
V
|
F
},
{
"meter"
,
"set scale meter (+9 to +18)"
,
OFFSET
(
meter
),
AV_OPT_TYPE_INT
,
{.
i64
=
9
},
9
,
18
,
V
|
F
},
{
"framelog"
,
"force frame logging level"
,
OFFSET
(
loglevel
),
AV_OPT_TYPE_INT
,
{.
i64
=
-
1
},
INT_MIN
,
INT_MAX
,
A
|
V
|
F
,
"level"
},
...
...
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