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
59da9dcd
Commit
59da9dcd
authored
Aug 26, 2019
by
Xuewei Meng
Committed by
Steven Liu
Aug 26, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_derain: reindent code after last commit
Signed-off-by:
Steven Liu
<
lq@chinaffmpeg.org
>
parent
6d1009cb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
vf_derain.c
libavfilter/vf_derain.c
+4
-4
No files found.
libavfilter/vf_derain.c
View file @
59da9dcd
...
@@ -50,12 +50,12 @@ static const AVOption derain_options[] = {
...
@@ -50,12 +50,12 @@ static const AVOption derain_options[] = {
{
"filter_type"
,
"filter type(derain/dehaze)"
,
OFFSET
(
filter_type
),
AV_OPT_TYPE_INT
,
{
.
i64
=
0
},
0
,
1
,
FLAGS
,
"type"
},
{
"filter_type"
,
"filter type(derain/dehaze)"
,
OFFSET
(
filter_type
),
AV_OPT_TYPE_INT
,
{
.
i64
=
0
},
0
,
1
,
FLAGS
,
"type"
},
{
"derain"
,
"derain filter flag"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
0
},
0
,
0
,
FLAGS
,
"type"
},
{
"derain"
,
"derain filter flag"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
0
},
0
,
0
,
FLAGS
,
"type"
},
{
"dehaze"
,
"dehaze filter flag"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
1
},
0
,
0
,
FLAGS
,
"type"
},
{
"dehaze"
,
"dehaze filter flag"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
1
},
0
,
0
,
FLAGS
,
"type"
},
{
"dnn_backend"
,
"DNN backend"
,
OFFSET
(
backend_type
),
AV_OPT_TYPE_INT
,
{
.
i64
=
0
},
0
,
1
,
FLAGS
,
"backend"
},
{
"dnn_backend"
,
"DNN backend"
,
OFFSET
(
backend_type
),
AV_OPT_TYPE_INT
,
{
.
i64
=
0
},
0
,
1
,
FLAGS
,
"backend"
},
{
"native"
,
"native backend flag"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
0
},
0
,
0
,
FLAGS
,
"backend"
},
{
"native"
,
"native backend flag"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
0
},
0
,
0
,
FLAGS
,
"backend"
},
#if (CONFIG_LIBTENSORFLOW == 1)
#if (CONFIG_LIBTENSORFLOW == 1)
{
"tensorflow"
,
"tensorflow backend flag"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
1
},
0
,
0
,
FLAGS
,
"backend"
},
{
"tensorflow"
,
"tensorflow backend flag"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
1
},
0
,
0
,
FLAGS
,
"backend"
},
#endif
#endif
{
"model"
,
"path to model file"
,
OFFSET
(
model_filename
),
AV_OPT_TYPE_STRING
,
{
.
str
=
NULL
},
0
,
0
,
FLAGS
},
{
"model"
,
"path to model file"
,
OFFSET
(
model_filename
),
AV_OPT_TYPE_STRING
,
{
.
str
=
NULL
},
0
,
0
,
FLAGS
},
{
NULL
}
{
NULL
}
};
};
...
...
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