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
0989d3ad
Commit
0989d3ad
authored
Jul 17, 2015
by
Alexandra Hájková
Committed by
Anton Khirnov
Jul 19, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
asfdec: convert condition for the replicated data reading to be safer
Signed-off-by:
Anton Khirnov
<
anton@khirnov.net
>
parent
40662728
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
asfdec.c
libavformat/asfdec.c
+2
-2
No files found.
libavformat/asfdec.c
View file @
0989d3ad
...
...
@@ -1133,7 +1133,7 @@ static int asf_read_multiple_payload(AVFormatContext *s, AVPacket *pkt,
}
else
avio_skip
(
pb
,
4
);
// reading of media object size is already done
asf_pkt
->
dts
=
avio_rl32
(
pb
);
// read presentation time
if
(
asf
->
rep_data_len
&&
(
(
asf
->
rep_data_len
-
8
)
>
0
))
if
(
asf
->
rep_data_len
&&
(
asf
->
rep_data_len
>=
8
))
avio_skip
(
pb
,
asf
->
rep_data_len
-
8
);
// skip replicated data
}
pay_len
=
avio_rl16
(
pb
);
// payload length should be WORD
...
...
@@ -1183,7 +1183,7 @@ static int asf_read_single_payload(AVFormatContext *s, AVPacket *pkt,
}
else
avio_skip
(
pb
,
4
);
// skip media object size
asf_pkt
->
dts
=
avio_rl32
(
pb
);
// read presentation time
if
(
(
asf
->
rep_data_len
-
8
)
>
0
)
if
(
asf
->
rep_data_len
>=
8
)
avio_skip
(
pb
,
asf
->
rep_data_len
-
8
);
// skip replicated data
offset
=
avio_tell
(
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