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
5f1bb258
Commit
5f1bb258
authored
Nov 12, 2017
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_hysteresis: allow using framesync options
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
789731af
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
vf_hysteresis.c
libavfilter/vf_hysteresis.c
+4
-3
No files found.
libavfilter/vf_hysteresis.c
View file @
5f1bb258
...
@@ -33,6 +33,7 @@
...
@@ -33,6 +33,7 @@
typedef
struct
HysteresisContext
{
typedef
struct
HysteresisContext
{
const
AVClass
*
class
;
const
AVClass
*
class
;
FFFrameSync
fs
;
int
planes
;
int
planes
;
int
threshold
;
int
threshold
;
...
@@ -40,7 +41,6 @@ typedef struct HysteresisContext {
...
@@ -40,7 +41,6 @@ typedef struct HysteresisContext {
int
width
[
4
],
height
[
4
];
int
width
[
4
],
height
[
4
];
int
nb_planes
;
int
nb_planes
;
int
depth
;
int
depth
;
FFFrameSync
fs
;
uint8_t
*
map
;
uint8_t
*
map
;
uint32_t
*
xy
;
uint32_t
*
xy
;
...
@@ -58,8 +58,6 @@ static const AVOption hysteresis_options[] = {
...
@@ -58,8 +58,6 @@ static const AVOption hysteresis_options[] = {
{
NULL
}
{
NULL
}
};
};
AVFILTER_DEFINE_CLASS
(
hysteresis
);
static
int
query_formats
(
AVFilterContext
*
ctx
)
static
int
query_formats
(
AVFilterContext
*
ctx
)
{
{
static
const
enum
AVPixelFormat
pix_fmts
[]
=
{
static
const
enum
AVPixelFormat
pix_fmts
[]
=
{
...
@@ -350,6 +348,8 @@ static av_cold void uninit(AVFilterContext *ctx)
...
@@ -350,6 +348,8 @@ static av_cold void uninit(AVFilterContext *ctx)
av_freep
(
&
s
->
xy
);
av_freep
(
&
s
->
xy
);
}
}
FRAMESYNC_DEFINE_CLASS
(
hysteresis
,
HysteresisContext
,
fs
);
static
const
AVFilterPad
hysteresis_inputs
[]
=
{
static
const
AVFilterPad
hysteresis_inputs
[]
=
{
{
{
.
name
=
"base"
,
.
name
=
"base"
,
...
@@ -375,6 +375,7 @@ static const AVFilterPad hysteresis_outputs[] = {
...
@@ -375,6 +375,7 @@ static const AVFilterPad hysteresis_outputs[] = {
AVFilter
ff_vf_hysteresis
=
{
AVFilter
ff_vf_hysteresis
=
{
.
name
=
"hysteresis"
,
.
name
=
"hysteresis"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Grow first stream into second stream by connecting components."
),
.
description
=
NULL_IF_CONFIG_SMALL
(
"Grow first stream into second stream by connecting components."
),
.
preinit
=
hysteresis_framesync_preinit
,
.
priv_size
=
sizeof
(
HysteresisContext
),
.
priv_size
=
sizeof
(
HysteresisContext
),
.
uninit
=
uninit
,
.
uninit
=
uninit
,
.
query_formats
=
query_formats
,
.
query_formats
=
query_formats
,
...
...
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