Browse Source

avutil/mathematics: Fix overflow with NaN in av_add_stable()

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n4.3
Dale Curtis Michael Niedermayer 5 years ago
parent
commit
d9aa1ef2c2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/mathematics.c

+ 1
- 1
libavutil/mathematics.c View File

@@ -207,7 +207,7 @@ int64_t av_add_stable(AVRational ts_tb, int64_t ts, AVRational inc_tb, int64_t i
int64_t old = av_rescale_q(ts, ts_tb, inc_tb);
int64_t old_ts = av_rescale_q(old, inc_tb, ts_tb);

if (old == INT64_MAX)
if (old == INT64_MAX || old == AV_NOPTS_VALUE || old_ts == AV_NOPTS_VALUE)
return ts;

return av_rescale_q(old + 1, inc_tb, ts_tb) + (ts - old_ts);


Loading…
Cancel
Save