Commit b5d433d3 authored by Michael Niedermayer's avatar Michael Niedermayer

lavf: increase RELATIVE_TS_BASE

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 588eaa10
......@@ -72,10 +72,10 @@ const char *avformat_license(void)
return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
}
#define RELATIVE_TS_BASE (INT64_MAX - (1LL<<32))
#define RELATIVE_TS_BASE (INT64_MAX - (1LL<<48))
static int is_relative(int64_t ts) {
return ts > (RELATIVE_TS_BASE - (1LL<<32));
return ts > (RELATIVE_TS_BASE - (1LL<<48));
}
/* fraction handling */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment