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
9b595e86
Commit
9b595e86
authored
Apr 12, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avdevice/lavfi: add error checking for av_opt_set_int_list()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
e87c1cdb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
lavfi.c
libavdevice/lavfi.c
+4
-4
No files found.
libavdevice/lavfi.c
View file @
9b595e86
...
@@ -230,8 +230,8 @@ av_cold static int lavfi_read_header(AVFormatContext *avctx)
...
@@ -230,8 +230,8 @@ av_cold static int lavfi_read_header(AVFormatContext *avctx)
ret
=
avfilter_graph_create_filter
(
&
sink
,
buffersink
,
ret
=
avfilter_graph_create_filter
(
&
sink
,
buffersink
,
inout
->
name
,
NULL
,
inout
->
name
,
NULL
,
NULL
,
lavfi
->
graph
);
NULL
,
lavfi
->
graph
);
av_opt_set_int_list
(
sink
,
"pix_fmts"
,
pix_fmts
,
AV_PIX_FMT_NONE
,
AV_OPT_SEARCH_CHILDREN
);
if
(
ret
>=
0
)
ret
=
av_opt_set_int_list
(
sink
,
"pix_fmts"
,
pix_fmts
,
AV_PIX_FMT_NONE
,
AV_OPT_SEARCH_CHILDREN
);
if
(
ret
<
0
)
if
(
ret
<
0
)
goto
end
;
goto
end
;
}
else
if
(
type
==
AVMEDIA_TYPE_AUDIO
)
{
}
else
if
(
type
==
AVMEDIA_TYPE_AUDIO
)
{
...
@@ -244,8 +244,8 @@ av_cold static int lavfi_read_header(AVFormatContext *avctx)
...
@@ -244,8 +244,8 @@ av_cold static int lavfi_read_header(AVFormatContext *avctx)
ret
=
avfilter_graph_create_filter
(
&
sink
,
abuffersink
,
ret
=
avfilter_graph_create_filter
(
&
sink
,
abuffersink
,
inout
->
name
,
NULL
,
inout
->
name
,
NULL
,
NULL
,
lavfi
->
graph
);
NULL
,
lavfi
->
graph
);
if
(
ret
>=
0
)
av_opt_set_int_list
(
sink
,
"sample_fmts"
,
sample_fmts
,
AV_SAMPLE_FMT_NONE
,
AV_OPT_SEARCH_CHILDREN
);
ret
=
av_opt_set_int_list
(
sink
,
"sample_fmts"
,
sample_fmts
,
AV_SAMPLE_FMT_NONE
,
AV_OPT_SEARCH_CHILDREN
);
if
(
ret
<
0
)
if
(
ret
<
0
)
goto
end
;
goto
end
;
}
}
...
...
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