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
8f37a1e8
Commit
8f37a1e8
authored
Oct 17, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/avfiltergraph: avoid to print "(null)" in the scale args
Fix parsing.
parent
2969abd9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
avfiltergraph.c
libavfilter/avfiltergraph.c
+5
-1
No files found.
libavfilter/avfiltergraph.c
View file @
8f37a1e8
...
...
@@ -358,7 +358,11 @@ static int query_formats(AVFilterGraph *graph, AVClass *log_ctx)
snprintf
(
inst_name
,
sizeof
(
inst_name
),
"auto-inserted scaler %d"
,
scaler_count
++
);
snprintf
(
scale_args
,
sizeof
(
scale_args
),
"0:0:%s"
,
graph
->
scale_sws_opts
);
if
(
graph
->
scale_sws_opts
)
snprintf
(
scale_args
,
sizeof
(
scale_args
),
"0:0:%s"
,
graph
->
scale_sws_opts
);
else
snprintf
(
scale_args
,
sizeof
(
scale_args
),
"0:0"
);
if
((
ret
=
avfilter_graph_create_filter
(
&
convert
,
filter
,
inst_name
,
scale_args
,
NULL
,
graph
))
<
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