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
6770a9d6
Commit
6770a9d6
authored
Nov 11, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg: Fix integer overflow with cur_dts being AV_NOPTS_VALUE
Since
de0e219a
cur_dts is sometimes invalid
parent
64e220be
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
ffmpeg.c
ffmpeg.c
+5
-1
No files found.
ffmpeg.c
View file @
6770a9d6
...
@@ -3382,8 +3382,12 @@ static OutputStream *choose_output(void)
...
@@ -3382,8 +3382,12 @@ static OutputStream *choose_output(void)
for
(
i
=
0
;
i
<
nb_output_streams
;
i
++
)
{
for
(
i
=
0
;
i
<
nb_output_streams
;
i
++
)
{
OutputStream
*
ost
=
output_streams
[
i
];
OutputStream
*
ost
=
output_streams
[
i
];
int64_t
opts
=
av_rescale_q
(
ost
->
st
->
cur_dts
,
ost
->
st
->
time_base
,
int64_t
opts
=
ost
->
st
->
cur_dts
==
AV_NOPTS_VALUE
?
INT64_MIN
:
av_rescale_q
(
ost
->
st
->
cur_dts
,
ost
->
st
->
time_base
,
AV_TIME_BASE_Q
);
AV_TIME_BASE_Q
);
if
(
ost
->
st
->
cur_dts
==
AV_NOPTS_VALUE
)
av_log
(
NULL
,
AV_LOG_DEBUG
,
"cur_dts is invalid (this is harmless if it occurs once at the start per stream)
\n
"
);
if
(
!
ost
->
finished
&&
opts
<
opts_min
)
{
if
(
!
ost
->
finished
&&
opts
<
opts_min
)
{
opts_min
=
opts
;
opts_min
=
opts
;
ost_min
=
ost
->
unavailable
?
NULL
:
ost
;
ost_min
=
ost
->
unavailable
?
NULL
:
ost
;
...
...
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