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
9d711a90
Commit
9d711a90
authored
Oct 25, 2019
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/bintext: avoid division by zero
Fixes #8335
parent
155508c6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
bintext.c
libavformat/bintext.c
+3
-1
No files found.
libavformat/bintext.c
View file @
9d711a90
...
@@ -149,7 +149,7 @@ static int bin_probe(const AVProbeData *p)
...
@@ -149,7 +149,7 @@ static int bin_probe(const AVProbeData *p)
return
AVPROBE_SCORE_EXTENSION
+
1
;
return
AVPROBE_SCORE_EXTENSION
+
1
;
predict_width
(
&
par
,
p
->
buf_size
,
got_width
);
predict_width
(
&
par
,
p
->
buf_size
,
got_width
);
if
(
par
.
width
<
=
0
)
if
(
par
.
width
<
8
)
return
0
;
return
0
;
calculate_height
(
&
par
,
p
->
buf_size
);
calculate_height
(
&
par
,
p
->
buf_size
);
if
(
par
.
height
<=
0
)
if
(
par
.
height
<=
0
)
...
@@ -195,6 +195,8 @@ static int bintext_read_header(AVFormatContext *s)
...
@@ -195,6 +195,8 @@ static int bintext_read_header(AVFormatContext *s)
next_tag_read
(
s
,
&
bin
->
fsize
);
next_tag_read
(
s
,
&
bin
->
fsize
);
if
(
!
bin
->
width
)
{
if
(
!
bin
->
width
)
{
predict_width
(
st
->
codecpar
,
bin
->
fsize
,
got_width
);
predict_width
(
st
->
codecpar
,
bin
->
fsize
,
got_width
);
if
(
st
->
codecpar
->
width
<
8
)
return
AVERROR_INVALIDDATA
;
calculate_height
(
st
->
codecpar
,
bin
->
fsize
);
calculate_height
(
st
->
codecpar
,
bin
->
fsize
);
}
}
avio_seek
(
pb
,
0
,
SEEK_SET
);
avio_seek
(
pb
,
0
,
SEEK_SET
);
...
...
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