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
def03d14
Commit
def03d14
authored
May 03, 2016
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vf_frei0r: Drop overly verbose and broken debug output
parent
41ed7ab4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
48 deletions
+0
-48
vf_frei0r.c
libavfilter/vf_frei0r.c
+0
-48
No files found.
libavfilter/vf_frei0r.c
View file @
def03d14
...
...
@@ -156,54 +156,6 @@ static int set_params(AVFilterContext *ctx, const char *params)
if
(
ret
<
0
)
return
ret
;
}
av_log
(
ctx
,
AV_LOG_VERBOSE
,
"idx:%d name:'%s' type:%s explanation:'%s' "
,
i
,
info
.
name
,
info
.
type
==
F0R_PARAM_BOOL
?
"bool"
:
info
.
type
==
F0R_PARAM_DOUBLE
?
"double"
:
info
.
type
==
F0R_PARAM_COLOR
?
"color"
:
info
.
type
==
F0R_PARAM_POSITION
?
"position"
:
info
.
type
==
F0R_PARAM_STRING
?
"string"
:
"unknown"
,
info
.
explanation
);
#ifdef DEBUG
av_log
(
ctx
,
AV_LOG_DEBUG
,
"value:"
);
switch
(
info
.
type
)
{
void
*
v
;
double
d
;
char
s
[
128
];
f0r_param_color_t
col
;
f0r_param_position_t
pos
;
case
F0R_PARAM_BOOL
:
v
=
&
d
;
s
->
get_param_value
(
s
->
instance
,
v
,
i
);
av_log
(
ctx
,
AV_LOG_DEBUG
,
"%s"
,
d
>=
0
.
5
&&
d
<=
1
.
0
?
"y"
:
"n"
);
break
;
case
F0R_PARAM_DOUBLE
:
v
=
&
d
;
s
->
get_param_value
(
s
->
instance
,
v
,
i
);
av_log
(
ctx
,
AV_LOG_DEBUG
,
"%f"
,
d
);
break
;
case
F0R_PARAM_COLOR
:
v
=
&
col
;
s
->
get_param_value
(
s
->
instance
,
v
,
i
);
av_log
(
ctx
,
AV_LOG_DEBUG
,
"%f/%f/%f"
,
col
.
r
,
col
.
g
,
col
.
b
);
break
;
case
F0R_PARAM_POSITION
:
v
=
&
pos
;
s
->
get_param_value
(
s
->
instance
,
v
,
i
);
av_log
(
ctx
,
AV_LOG_DEBUG
,
"%f/%f"
,
pos
.
x
,
pos
.
y
);
break
;
default:
/* F0R_PARAM_STRING */
v
=
s
;
s
->
get_param_value
(
s
->
instance
,
v
,
i
);
av_log
(
ctx
,
AV_LOG_DEBUG
,
"'%s'"
,
s
);
break
;
}
#endif
av_log
(
ctx
,
AV_LOG_VERBOSE
,
".
\n
"
);
}
return
0
;
...
...
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