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
aeda1121
Commit
aeda1121
authored
Jul 20, 2014
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf: factor out freeing an AVStream
It will be needed in other functions.
parent
3efd71b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
25 deletions
+33
-25
utils.c
libavformat/utils.c
+33
-25
No files found.
libavformat/utils.c
View file @
aeda1121
...
...
@@ -2442,10 +2442,39 @@ int av_read_pause(AVFormatContext *s)
return
AVERROR
(
ENOSYS
);
}
static
void
free_stream
(
AVStream
**
pst
)
{
AVStream
*
st
=
*
pst
;
int
i
;
if
(
!
st
)
return
;
for
(
i
=
0
;
i
<
st
->
nb_side_data
;
i
++
)
av_freep
(
&
st
->
side_data
[
i
].
data
);
av_freep
(
&
st
->
side_data
);
if
(
st
->
parser
)
av_parser_close
(
st
->
parser
);
if
(
st
->
attached_pic
.
data
)
av_packet_unref
(
&
st
->
attached_pic
);
av_dict_free
(
&
st
->
metadata
);
av_freep
(
&
st
->
probe_data
.
buf
);
av_free
(
st
->
index_entries
);
av_free
(
st
->
codec
->
extradata
);
av_free
(
st
->
codec
->
subtitle_header
);
av_free
(
st
->
codec
);
av_free
(
st
->
priv_data
);
av_free
(
st
->
info
);
av_freep
(
pst
);
}
void
avformat_free_context
(
AVFormatContext
*
s
)
{
int
i
,
j
;
AVStream
*
st
;
int
i
;
if
(
!
s
)
return
;
...
...
@@ -2454,30 +2483,9 @@ void avformat_free_context(AVFormatContext *s)
if
(
s
->
iformat
&&
s
->
iformat
->
priv_class
&&
s
->
priv_data
)
av_opt_free
(
s
->
priv_data
);
for
(
i
=
0
;
i
<
s
->
nb_streams
;
i
++
)
{
/* free all data in a stream component */
st
=
s
->
streams
[
i
];
for
(
j
=
0
;
j
<
st
->
nb_side_data
;
j
++
)
av_freep
(
&
st
->
side_data
[
j
].
data
);
av_freep
(
&
st
->
side_data
);
st
->
nb_side_data
=
0
;
for
(
i
=
0
;
i
<
s
->
nb_streams
;
i
++
)
free_stream
(
&
s
->
streams
[
i
]);
if
(
st
->
parser
)
{
av_parser_close
(
st
->
parser
);
}
if
(
st
->
attached_pic
.
data
)
av_packet_unref
(
&
st
->
attached_pic
);
av_dict_free
(
&
st
->
metadata
);
av_freep
(
&
st
->
probe_data
.
buf
);
av_free
(
st
->
index_entries
);
av_free
(
st
->
codec
->
extradata
);
av_free
(
st
->
codec
->
subtitle_header
);
av_free
(
st
->
codec
);
av_free
(
st
->
priv_data
);
av_free
(
st
->
info
);
av_free
(
st
);
}
for
(
i
=
s
->
nb_programs
-
1
;
i
>=
0
;
i
--
)
{
av_dict_free
(
&
s
->
programs
[
i
]
->
metadata
);
av_freep
(
&
s
->
programs
[
i
]
->
stream_index
);
...
...
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