Commit 2896b981 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'd0c09302'

* commit 'd0c09302':
  avconv: Use av_gettime_relative

Conflicts:
	ffmpeg.c

See: 76191c08Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 872e0873 d0c09302
......@@ -3780,7 +3780,7 @@ static int64_t getutime(void)
GetProcessTimes(proc, &c, &e, &k, &u);
return ((int64_t) u.dwHighDateTime << 32 | u.dwLowDateTime) / 10;
#else
return av_gettime();
return av_gettime_relative();
#endif
}
......
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