This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Force using a 64bit intermediate when calculating calendar time with av_timegm().
Fixes a fate failure with icc 13.1
tags/n1.2
Carl Eugen Hoyos
12 years ago
parent
d30ee5ef59
commit
de4811e910
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavutil/parseutils.c
+ 1
- 1
libavutil/parseutils.c
View File
@@ -519,7 +519,7 @@ time_t av_timegm(struct tm *tm)
y--;
}
t = 86400 *
t = 86400
LL
*
(d + (153 * m - 457) / 5 + 365 * y + y / 4 - y / 100 + y / 400 - 719469);
t += 3600 * tm->tm_hour + 60 * tm->tm_min + tm->tm_sec;
Write
Preview
Loading…
Cancel
Save