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
f2f6d45d
Commit
f2f6d45d
authored
Dec 26, 2013
by
Clément Bœsch
Committed by
Clément Bœsch
Aug 20, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/showwaves: add "cline" mode (centered line)
parent
76a99d46
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
5 deletions
+22
-5
filters.texi
doc/filters.texi
+3
-0
avf_showwaves.c
libavfilter/avf_showwaves.c
+19
-5
No files found.
doc/filters.texi
View file @
f2f6d45d
...
@@ -10813,6 +10813,9 @@ Draw a vertical line for each sample.
...
@@ -10813,6 +10813,9 @@ Draw a vertical line for each sample.
@item p2p
@item p2p
Draw a point for each sample and a line between them.
Draw a point for each sample and a line between them.
@item centered_line
Draw a centered vertical line for each sample.
@end table
@end table
Default value is @code{point}.
Default value is @code{point}.
...
...
libavfilter/avf_showwaves.c
View file @
f2f6d45d
...
@@ -36,6 +36,7 @@ enum ShowWavesMode {
...
@@ -36,6 +36,7 @@ enum ShowWavesMode {
MODE_POINT
,
MODE_POINT
,
MODE_LINE
,
MODE_LINE
,
MODE_P2P
,
MODE_P2P
,
MODE_CENTERED_LINE
,
MODE_NB
,
MODE_NB
,
};
};
...
@@ -62,6 +63,7 @@ static const AVOption showwaves_options[] = {
...
@@ -62,6 +63,7 @@ static const AVOption showwaves_options[] = {
{
"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"
},
{
"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
},
...
@@ -206,26 +208,30 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *insamples)
...
@@ -206,26 +208,30 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *insamples)
memset
(
outpicref
->
data
[
0
]
+
j
*
linesize
,
0
,
outlink
->
w
);
memset
(
outpicref
->
data
[
0
]
+
j
*
linesize
,
0
,
outlink
->
w
);
}
}
for
(
j
=
0
;
j
<
nb_channels
;
j
++
)
{
for
(
j
=
0
;
j
<
nb_channels
;
j
++
)
{
h
=
showwaves
->
h
/
2
-
av_rescale
(
*
p
++
,
showwaves
->
h
/
2
,
MAX_INT16
)
;
int
start
,
end
;
switch
(
showwaves
->
mode
)
{
switch
(
showwaves
->
mode
)
{
case
MODE_POINT
:
case
MODE_POINT
:
h
=
showwaves
->
h
/
2
-
av_rescale
(
*
p
++
,
showwaves
->
h
/
2
,
MAX_INT16
);
if
(
h
>=
0
&&
h
<
outlink
->
h
)
if
(
h
>=
0
&&
h
<
outlink
->
h
)
*
(
outpicref
->
data
[
0
]
+
showwaves
->
buf_idx
+
h
*
linesize
)
+=
x
;
*
(
outpicref
->
data
[
0
]
+
showwaves
->
buf_idx
+
h
*
linesize
)
+=
x
;
break
;
break
;
case
MODE_LINE
:
case
MODE_LINE
:
{
h
=
showwaves
->
h
/
2
-
av_rescale
(
*
p
++
,
showwaves
->
h
/
2
,
MAX_INT16
);
int
start
=
showwaves
->
h
/
2
,
end
=
av_clip
(
h
,
0
,
outlink
->
h
-
1
);
start
=
showwaves
->
h
/
2
;
end
=
av_clip
(
h
,
0
,
outlink
->
h
-
1
);
if
(
start
>
end
)
FFSWAP
(
int16_t
,
start
,
end
);
if
(
start
>
end
)
FFSWAP
(
int16_t
,
start
,
end
);
for
(
k
=
start
;
k
<
end
;
k
++
)
for
(
k
=
start
;
k
<
end
;
k
++
)
*
(
outpicref
->
data
[
0
]
+
showwaves
->
buf_idx
+
k
*
linesize
)
+=
x
;
*
(
outpicref
->
data
[
0
]
+
showwaves
->
buf_idx
+
k
*
linesize
)
+=
x
;
break
;
break
;
}
case
MODE_P2P
:
case
MODE_P2P
:
h
=
showwaves
->
h
/
2
-
av_rescale
(
*
p
++
,
showwaves
->
h
/
2
,
MAX_INT16
);
if
(
h
>=
0
&&
h
<
outlink
->
h
)
{
if
(
h
>=
0
&&
h
<
outlink
->
h
)
{
*
(
outpicref
->
data
[
0
]
+
showwaves
->
buf_idx
+
h
*
linesize
)
+=
x
;
*
(
outpicref
->
data
[
0
]
+
showwaves
->
buf_idx
+
h
*
linesize
)
+=
x
;
if
(
showwaves
->
buf_idy
[
j
]
&&
h
!=
showwaves
->
buf_idy
[
j
])
{
if
(
showwaves
->
buf_idy
[
j
]
&&
h
!=
showwaves
->
buf_idy
[
j
])
{
int
start
=
showwaves
->
buf_idy
[
j
],
end
=
av_clip
(
h
,
0
,
outlink
->
h
-
1
);
start
=
showwaves
->
buf_idy
[
j
];
end
=
av_clip
(
h
,
0
,
outlink
->
h
-
1
);
if
(
start
>
end
)
if
(
start
>
end
)
FFSWAP
(
int16_t
,
start
,
end
);
FFSWAP
(
int16_t
,
start
,
end
);
for
(
k
=
start
+
1
;
k
<
end
;
k
++
)
for
(
k
=
start
+
1
;
k
<
end
;
k
++
)
...
@@ -233,6 +239,14 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *insamples)
...
@@ -233,6 +239,14 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *insamples)
}
}
}
}
break
;
break
;
case
MODE_CENTERED_LINE
:
h
=
av_rescale
(
abs
(
*
p
++
),
showwaves
->
h
,
UINT16_MAX
);
start
=
(
showwaves
->
h
-
h
)
/
2
;
end
=
start
+
h
;
for
(
k
=
start
;
k
<
end
;
k
++
)
*
(
outpicref
->
data
[
0
]
+
showwaves
->
buf_idx
+
k
*
linesize
)
+=
x
;
break
;
}
}
/* store current y coordinate for this channel */
/* store current y coordinate for this channel */
showwaves
->
buf_idy
[
j
]
=
h
;
showwaves
->
buf_idy
[
j
]
=
h
;
...
...
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