Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
e298b2f5
Commit
e298b2f5
authored
Aug 20, 2014
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/showwaves: align const mode values (cosmetics)
parent
5abcc8e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
avf_showwaves.c
libavfilter/avf_showwaves.c
+4
-4
No files found.
libavfilter/avf_showwaves.c
View file @
e298b2f5
...
@@ -63,10 +63,10 @@ static const AVOption showwaves_options[] = {
...
@@ -63,10 +63,10 @@ static const AVOption showwaves_options[] = {
{
"size"
,
"set video size"
,
OFFSET
(
w
),
AV_OPT_TYPE_IMAGE_SIZE
,
{.
str
=
"600x240"
},
0
,
0
,
FLAGS
},
{
"size"
,
"set video size"
,
OFFSET
(
w
),
AV_OPT_TYPE_IMAGE_SIZE
,
{.
str
=
"600x240"
},
0
,
0
,
FLAGS
},
{
"s"
,
"set video size"
,
OFFSET
(
w
),
AV_OPT_TYPE_IMAGE_SIZE
,
{.
str
=
"600x240"
},
0
,
0
,
FLAGS
},
{
"s"
,
"set video size"
,
OFFSET
(
w
),
AV_OPT_TYPE_IMAGE_SIZE
,
{.
str
=
"600x240"
},
0
,
0
,
FLAGS
},
{
"mode"
,
"select display mode"
,
OFFSET
(
mode
),
AV_OPT_TYPE_INT
,
{.
i64
=
MODE_POINT
},
0
,
MODE_NB
-
1
,
FLAGS
,
"mode"
},
{
"mode"
,
"select display mode"
,
OFFSET
(
mode
),
AV_OPT_TYPE_INT
,
{.
i64
=
MODE_POINT
},
0
,
MODE_NB
-
1
,
FLAGS
,
"mode"
},
{
"point"
,
"draw a point for each sample"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
MODE_POINT
},
.
flags
=
FLAGS
,
.
unit
=
"mode"
},
{
"point"
,
"draw a point for each sample"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
MODE_POINT
},
.
flags
=
FLAGS
,
.
unit
=
"mode"
},
{
"line"
,
"draw a line for each sample"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
MODE_LINE
},
.
flags
=
FLAGS
,
.
unit
=
"mode"
},
{
"line"
,
"draw a line for each sample"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
MODE_LINE
},
.
flags
=
FLAGS
,
.
unit
=
"mode"
},
{
"p2p"
,
"draw a line between samples"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
MODE_P2P
},
.
flags
=
FLAGS
,
.
unit
=
"mode"
},
{
"p2p"
,
"draw a line between samples"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
MODE_P2P
},
.
flags
=
FLAGS
,
.
unit
=
"mode"
},
{
"cline"
,
"draw a centered line for each sample"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
MODE_CENTERED_LINE
},
.
flags
=
FLAGS
,
.
unit
=
"mode"
},
{
"cline"
,
"draw a centered line for each sample"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
MODE_CENTERED_LINE
},
.
flags
=
FLAGS
,
.
unit
=
"mode"
},
{
"n"
,
"set how many samples to show in the same point"
,
OFFSET
(
n
),
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
0
,
INT_MAX
,
FLAGS
},
{
"n"
,
"set how many samples to show in the same point"
,
OFFSET
(
n
),
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
0
,
INT_MAX
,
FLAGS
},
{
"rate"
,
"set video rate"
,
OFFSET
(
rate
),
AV_OPT_TYPE_VIDEO_RATE
,
{.
str
=
"25"
},
0
,
0
,
FLAGS
},
{
"rate"
,
"set video rate"
,
OFFSET
(
rate
),
AV_OPT_TYPE_VIDEO_RATE
,
{.
str
=
"25"
},
0
,
0
,
FLAGS
},
{
"r"
,
"set video rate"
,
OFFSET
(
rate
),
AV_OPT_TYPE_VIDEO_RATE
,
{.
str
=
"25"
},
0
,
0
,
FLAGS
},
{
"r"
,
"set video rate"
,
OFFSET
(
rate
),
AV_OPT_TYPE_VIDEO_RATE
,
{.
str
=
"25"
},
0
,
0
,
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