mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-30 15:00:29 +00:00
Merge commit '5d983fdbca5570a1545a892583a372cfb3fffe92'
* commit '5d983fdbca5570a1545a892583a372cfb3fffe92': flv: Warn only once Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
7da5ff5c18
@ -934,10 +934,11 @@ retry_duration:
|
||||
// sign extension
|
||||
int32_t cts = (avio_rb24(s->pb) + 0xff800000) ^ 0xff800000;
|
||||
pts = dts + cts;
|
||||
if (cts < 0) { // dts are wrong
|
||||
if (cts < 0) { // dts might be wrong
|
||||
if (!flv->wrong_dts)
|
||||
av_log(s, AV_LOG_WARNING,
|
||||
"Negative cts, previous timestamps might be wrong.\n");
|
||||
flv->wrong_dts = 1;
|
||||
av_log(s, AV_LOG_WARNING,
|
||||
"Negative cts, previous timestamps might be wrong.\n");
|
||||
} else if (FFABS(dts - pts) > 1000*60*15) {
|
||||
av_log(s, AV_LOG_WARNING,
|
||||
"invalid timestamps %"PRId64" %"PRId64"\n", dts, pts);
|
||||
|
Loading…
Reference in New Issue
Block a user