lavf: increase RELATIVE_TS_BASE

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-04-03 23:34:53 +02:00
parent 588eaa106d
commit b5d433d306

View File

@ -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 */