Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
0c25caa4
Commit
0c25caa4
authored
7 years ago
by
Paul B Mahol
Browse files
Options
Downloads
Patches
Plain Diff
avfilter/avf_showvolume: let fade be also exactly 0
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
e8d78503
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/filters.texi
+1
-1
1 addition, 1 deletion
doc/filters.texi
libavfilter/avf_showvolume.c
+1
-1
1 addition, 1 deletion
libavfilter/avf_showvolume.c
with
2 additions
and
2 deletions
doc/filters.texi
+
1
−
1
View file @
0c25caa4
...
@@ -19936,7 +19936,7 @@ Set channel width, allowed range is [80, 8192]. Default is 400.
...
@@ -19936,7 +19936,7 @@ Set channel width, allowed range is [80, 8192]. Default is 400.
Set channel height, allowed range is [1, 900]. Default is 20.
Set channel height, allowed range is [1, 900]. Default is 20.
@item f
@item f
Set fade, allowed range is [0
.001
, 1]. Default is 0.95.
Set fade, allowed range is [0, 1]. Default is 0.95.
@item c
@item c
Set volume color expression.
Set volume color expression.
...
...
This diff is collapsed.
Click to expand it.
libavfilter/avf_showvolume.c
+
1
−
1
View file @
0c25caa4
...
@@ -67,7 +67,7 @@ static const AVOption showvolume_options[] = {
...
@@ -67,7 +67,7 @@ static const AVOption showvolume_options[] = {
{
"b"
,
"set border width"
,
OFFSET
(
b
),
AV_OPT_TYPE_INT
,
{.
i64
=
1
},
0
,
5
,
FLAGS
},
{
"b"
,
"set border width"
,
OFFSET
(
b
),
AV_OPT_TYPE_INT
,
{.
i64
=
1
},
0
,
5
,
FLAGS
},
{
"w"
,
"set channel width"
,
OFFSET
(
w
),
AV_OPT_TYPE_INT
,
{.
i64
=
400
},
80
,
8192
,
FLAGS
},
{
"w"
,
"set channel width"
,
OFFSET
(
w
),
AV_OPT_TYPE_INT
,
{.
i64
=
400
},
80
,
8192
,
FLAGS
},
{
"h"
,
"set channel height"
,
OFFSET
(
h
),
AV_OPT_TYPE_INT
,
{.
i64
=
20
},
1
,
900
,
FLAGS
},
{
"h"
,
"set channel height"
,
OFFSET
(
h
),
AV_OPT_TYPE_INT
,
{.
i64
=
20
},
1
,
900
,
FLAGS
},
{
"f"
,
"set fade"
,
OFFSET
(
f
),
AV_OPT_TYPE_DOUBLE
,
{.
dbl
=
0
.
95
},
0
.
001
,
1
,
FLAGS
},
{
"f"
,
"set fade"
,
OFFSET
(
f
),
AV_OPT_TYPE_DOUBLE
,
{.
dbl
=
0
.
95
},
0
,
1
,
FLAGS
},
{
"c"
,
"set volume color expression"
,
OFFSET
(
color
),
AV_OPT_TYPE_STRING
,
{.
str
=
"PEAK*255+floor((1-PEAK)*255)*256+0xff000000"
},
0
,
0
,
FLAGS
},
{
"c"
,
"set volume color expression"
,
OFFSET
(
color
),
AV_OPT_TYPE_STRING
,
{.
str
=
"PEAK*255+floor((1-PEAK)*255)*256+0xff000000"
},
0
,
0
,
FLAGS
},
{
"t"
,
"display channel names"
,
OFFSET
(
draw_text
),
AV_OPT_TYPE_BOOL
,
{.
i64
=
1
},
0
,
1
,
FLAGS
},
{
"t"
,
"display channel names"
,
OFFSET
(
draw_text
),
AV_OPT_TYPE_BOOL
,
{.
i64
=
1
},
0
,
1
,
FLAGS
},
{
"v"
,
"display volume value"
,
OFFSET
(
draw_volume
),
AV_OPT_TYPE_BOOL
,
{.
i64
=
1
},
0
,
1
,
FLAGS
},
{
"v"
,
"display volume value"
,
OFFSET
(
draw_volume
),
AV_OPT_TYPE_BOOL
,
{.
i64
=
1
},
0
,
1
,
FLAGS
},
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment