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
44272c1c
Commit
44272c1c
authored
Sep 04, 2012
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat: refactor avformat_close_input
Do not crash if the input format is not allocated yet.
parent
4d1f443c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
utils.c
libavformat/utils.c
+13
-4
No files found.
libavformat/utils.c
View file @
44272c1c
...
...
@@ -2702,12 +2702,21 @@ void av_close_input_file(AVFormatContext *s)
void
avformat_close_input
(
AVFormatContext
**
ps
)
{
AVFormatContext
*
s
=
*
ps
;
AVIOContext
*
pb
=
(
s
->
iformat
->
flags
&
AVFMT_NOFILE
)
||
(
s
->
flags
&
AVFMT_FLAG_CUSTOM_IO
)
?
NULL
:
s
->
pb
;
AVIOContext
*
pb
=
s
->
pb
;
if
((
s
->
iformat
&&
s
->
iformat
->
flags
&
AVFMT_NOFILE
)
&&
(
s
->
flags
&
AVFMT_FLAG_CUSTOM_IO
))
pb
=
NULL
;
flush_packet_queue
(
s
);
if
(
s
->
iformat
->
read_close
)
s
->
iformat
->
read_close
(
s
);
if
(
s
->
iformat
)
{
if
(
s
->
iformat
->
read_close
)
s
->
iformat
->
read_close
(
s
);
}
avformat_free_context
(
s
);
*
ps
=
NULL
;
avio_close
(
pb
);
...
...
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