Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
ffmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Luma Media Server
ffmpeg
Commits
6e3c13a5
Commit
6e3c13a5
authored
12 years ago
by
Anton Khirnov
Browse files
Options
Downloads
Patches
Plain Diff
avfiltergraph: check for sws opts being non-NULL before using them.
Avoid snprintfing a NULL pointer. CC: libav-stable@libav.org
parent
817dff57
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavfilter/avfiltergraph.c
+6
-1
6 additions, 1 deletion
libavfilter/avfiltergraph.c
libavfilter/graphparser.c
+2
-1
2 additions, 1 deletion
libavfilter/graphparser.c
with
8 additions
and
2 deletions
libavfilter/avfiltergraph.c
+
6
−
1
View file @
6e3c13a5
...
...
@@ -23,6 +23,7 @@
#include
<string.h>
#include
"libavutil/avassert.h"
#include
"libavutil/avstring.h"
#include
"libavutil/channel_layout.h"
#include
"libavutil/common.h"
#include
"libavutil/log.h"
...
...
@@ -220,7 +221,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
);
av_strlcpy
(
scale_args
,
"0:0"
,
sizeof
(
scale_args
));
if
(
graph
->
scale_sws_opts
)
{
av_strlcat
(
scale_args
,
":"
,
sizeof
(
scale_args
));
av_strlcat
(
scale_args
,
graph
->
scale_sws_opts
,
sizeof
(
scale_args
));
}
if
((
ret
=
avfilter_graph_create_filter
(
&
convert
,
filter
,
inst_name
,
scale_args
,
NULL
,
graph
))
<
0
)
...
...
This diff is collapsed.
Click to expand it.
libavfilter/graphparser.c
+
2
−
1
View file @
6e3c13a5
...
...
@@ -122,7 +122,8 @@ static int create_filter(AVFilterContext **filt_ctx, AVFilterGraph *ctx, int ind
return
ret
;
}
if
(
!
strcmp
(
filt_name
,
"scale"
)
&&
args
&&
!
strstr
(
args
,
"flags"
))
{
if
(
!
strcmp
(
filt_name
,
"scale"
)
&&
args
&&
!
strstr
(
args
,
"flags"
)
&&
ctx
->
scale_sws_opts
)
{
snprintf
(
tmp_args
,
sizeof
(
tmp_args
),
"%s:%s"
,
args
,
ctx
->
scale_sws_opts
);
args
=
tmp_args
;
...
...
This diff is collapsed.
Click to expand it.
Auri
@aurieh
mentioned in commit
33c9e18b
·
5 years ago
mentioned in commit
33c9e18b
mentioned in commit 33c9e18b09f4025ae635ef24bab8eab1a686a711
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment