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
fad68657
Commit
fad68657
authored
Nov 16, 2014
by
Clément Bœsch
Committed by
Clément Bœsch
Nov 26, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/signalstats: fix repitition/repetition typo
parent
cc5c667e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vf_signalstats.c
libavfilter/vf_signalstats.c
+2
-2
No files found.
libavfilter/vf_signalstats.c
View file @
fad68657
...
...
@@ -53,11 +53,11 @@ typedef struct {
static
const
AVOption
signalstats_options
[]
=
{
{
"stat"
,
"set statistics filters"
,
OFFSET
(
filters
),
AV_OPT_TYPE_FLAGS
,
{.
i64
=
0
},
0
,
INT_MAX
,
FLAGS
,
"filters"
},
{
"tout"
,
"analyze pixels for temporal outliers"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
1
<<
FILTER_TOUT
},
0
,
0
,
FLAGS
,
"filters"
},
{
"vrep"
,
"analyze video lines for vertical line rep
i
tition"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
1
<<
FILTER_VREP
},
0
,
0
,
FLAGS
,
"filters"
},
{
"vrep"
,
"analyze video lines for vertical line rep
e
tition"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
1
<<
FILTER_VREP
},
0
,
0
,
FLAGS
,
"filters"
},
{
"brng"
,
"analyze for pixels outside of broadcast range"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
1
<<
FILTER_BRNG
},
0
,
0
,
FLAGS
,
"filters"
},
{
"out"
,
"set video filter"
,
OFFSET
(
outfilter
),
AV_OPT_TYPE_INT
,
{.
i64
=
FILTER_NONE
},
-
1
,
FILT_NUMB
-
1
,
FLAGS
,
"out"
},
{
"tout"
,
"highlight pixels that depict temporal outliers"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FILTER_TOUT
},
0
,
0
,
FLAGS
,
"out"
},
{
"vrep"
,
"highlight video lines that depict vertical line rep
i
tition"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FILTER_VREP
},
0
,
0
,
FLAGS
,
"out"
},
{
"vrep"
,
"highlight video lines that depict vertical line rep
e
tition"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FILTER_VREP
},
0
,
0
,
FLAGS
,
"out"
},
{
"brng"
,
"highlight pixels that are outside of broadcast range"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FILTER_BRNG
},
0
,
0
,
FLAGS
,
"out"
},
{
"c"
,
"set highlight color"
,
OFFSET
(
rgba_color
),
AV_OPT_TYPE_COLOR
,
{.
str
=
"yellow"
},
.
flags
=
FLAGS
},
{
"color"
,
"set highlight color"
,
OFFSET
(
rgba_color
),
AV_OPT_TYPE_COLOR
,
{.
str
=
"yellow"
},
.
flags
=
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