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
c9024a9f
Commit
c9024a9f
authored
Mar 26, 2012
by
Alex Converse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpegts: Fix dead error checks
parent
95b192de
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
6 deletions
+12
-6
mpegts.c
libavformat/mpegts.c
+12
-6
No files found.
libavformat/mpegts.c
View file @
c9024a9f
...
...
@@ -1389,16 +1389,18 @@ static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len
return
;
clear_program
(
ts
,
h
->
id
);
pcr_pid
=
get16
(
&
p
,
p_end
)
&
0x1fff
;
pcr_pid
=
get16
(
&
p
,
p_end
);
if
(
pcr_pid
<
0
)
return
;
pcr_pid
&=
0x1fff
;
add_pid_to_pmt
(
ts
,
h
->
id
,
pcr_pid
);
av_dlog
(
ts
->
stream
,
"pcr_pid=0x%x
\n
"
,
pcr_pid
);
program_info_length
=
get16
(
&
p
,
p_end
)
&
0xfff
;
program_info_length
=
get16
(
&
p
,
p_end
);
if
(
program_info_length
<
0
)
return
;
program_info_length
&=
0xfff
;
while
(
program_info_length
>=
2
)
{
uint8_t
tag
,
len
;
tag
=
get8
(
&
p
,
p_end
);
...
...
@@ -1436,9 +1438,10 @@ static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len
stream_type
=
get8
(
&
p
,
p_end
);
if
(
stream_type
<
0
)
break
;
pid
=
get16
(
&
p
,
p_end
)
&
0x1fff
;
pid
=
get16
(
&
p
,
p_end
);
if
(
pid
<
0
)
break
;
pid
&=
0x1fff
;
/* now create stream */
if
(
ts
->
pids
[
pid
]
&&
ts
->
pids
[
pid
]
->
type
==
MPEGTS_PES
)
{
...
...
@@ -1476,9 +1479,10 @@ static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len
ff_program_add_stream_index
(
ts
->
stream
,
h
->
id
,
st
->
index
);
desc_list_len
=
get16
(
&
p
,
p_end
)
&
0xfff
;
desc_list_len
=
get16
(
&
p
,
p_end
);
if
(
desc_list_len
<
0
)
break
;
desc_list_len
&=
0xfff
;
desc_list_end
=
p
+
desc_list_len
;
if
(
desc_list_end
>
p_end
)
break
;
...
...
@@ -1522,9 +1526,10 @@ static void pat_cb(MpegTSFilter *filter, const uint8_t *section, int section_len
sid
=
get16
(
&
p
,
p_end
);
if
(
sid
<
0
)
break
;
pmt_pid
=
get16
(
&
p
,
p_end
)
&
0x1fff
;
pmt_pid
=
get16
(
&
p
,
p_end
);
if
(
pmt_pid
<
0
)
break
;
pmt_pid
&=
0x1fff
;
av_dlog
(
ts
->
stream
,
"sid=0x%x pid=0x%x
\n
"
,
sid
,
pmt_pid
);
...
...
@@ -1572,9 +1577,10 @@ static void sdt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len
val
=
get8
(
&
p
,
p_end
);
if
(
val
<
0
)
break
;
desc_list_len
=
get16
(
&
p
,
p_end
)
&
0xfff
;
desc_list_len
=
get16
(
&
p
,
p_end
);
if
(
desc_list_len
<
0
)
break
;
desc_list_len
&=
0xfff
;
desc_list_end
=
p
+
desc_list_len
;
if
(
desc_list_end
>
p_end
)
break
;
...
...
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