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
a38b14a4
Commit
a38b14a4
authored
Nov 12, 2017
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/ty: fix memory leaks
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
6665938c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
ty.c
libavformat/ty.c
+11
-0
No files found.
libavformat/ty.c
View file @
a38b14a4
...
@@ -764,6 +764,16 @@ static int ty_read_packet(AVFormatContext *s, AVPacket *pkt)
...
@@ -764,6 +764,16 @@ static int ty_read_packet(AVFormatContext *s, AVPacket *pkt)
return
0
;
return
0
;
}
}
static
int
ty_read_close
(
AVFormatContext
*
s
)
{
TYDemuxContext
*
ty
=
s
->
priv_data
;
av_freep
(
&
ty
->
seq_table
);
av_freep
(
&
ty
->
rec_hdrs
);
return
0
;
}
AVInputFormat
ff_ty_demuxer
=
{
AVInputFormat
ff_ty_demuxer
=
{
.
name
=
"ty"
,
.
name
=
"ty"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"TiVo TY Stream"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"TiVo TY Stream"
),
...
@@ -771,6 +781,7 @@ AVInputFormat ff_ty_demuxer = {
...
@@ -771,6 +781,7 @@ AVInputFormat ff_ty_demuxer = {
.
read_probe
=
ty_probe
,
.
read_probe
=
ty_probe
,
.
read_header
=
ty_read_header
,
.
read_header
=
ty_read_header
,
.
read_packet
=
ty_read_packet
,
.
read_packet
=
ty_read_packet
,
.
read_close
=
ty_read_close
,
.
extensions
=
"ty,ty+"
,
.
extensions
=
"ty,ty+"
,
.
flags
=
AVFMT_TS_DISCONT
,
.
flags
=
AVFMT_TS_DISCONT
,
};
};
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