mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-21 23:03:13 +00:00
lavf: increase RELATIVE_TS_BASE
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
588eaa106d
commit
b5d433d306
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user