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
e0623953
Commit
e0623953
authored
Jan 17, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_frei0r: fix build with DEBUG enabled
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
353cf95f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
vf_frei0r.c
libavfilter/vf_frei0r.c
+3
-3
No files found.
libavfilter/vf_frei0r.c
View file @
e0623953
...
@@ -175,7 +175,7 @@ static int set_params(AVFilterContext *ctx, const char *params)
...
@@ -175,7 +175,7 @@ static int set_params(AVFilterContext *ctx, const char *params)
switch
(
info
.
type
)
{
switch
(
info
.
type
)
{
void
*
v
;
void
*
v
;
double
d
;
double
d
;
char
s
[
128
];
char
s
tr
[
128
];
f0r_param_color_t
col
;
f0r_param_color_t
col
;
f0r_param_position_t
pos
;
f0r_param_position_t
pos
;
...
@@ -200,9 +200,9 @@ static int set_params(AVFilterContext *ctx, const char *params)
...
@@ -200,9 +200,9 @@ static int set_params(AVFilterContext *ctx, const char *params)
av_log
(
ctx
,
AV_LOG_DEBUG
,
"%f/%f"
,
pos
.
x
,
pos
.
y
);
av_log
(
ctx
,
AV_LOG_DEBUG
,
"%f/%f"
,
pos
.
x
,
pos
.
y
);
break
;
break
;
default:
/* F0R_PARAM_STRING */
default:
/* F0R_PARAM_STRING */
v
=
s
;
v
=
s
tr
;
s
->
get_param_value
(
s
->
instance
,
v
,
i
);
s
->
get_param_value
(
s
->
instance
,
v
,
i
);
av_log
(
ctx
,
AV_LOG_DEBUG
,
"'%s'"
,
s
);
av_log
(
ctx
,
AV_LOG_DEBUG
,
"'%s'"
,
s
tr
);
break
;
break
;
}
}
#endif
#endif
...
...
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