diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2015-08-04 21:40:04 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2015-08-04 21:40:04 +0200 |
commit | e5997152f54f790229c99f237f8eb6b5b1ee683a (patch) | |
tree | d593f08b4cf1aa3c87d206ff50910aaee128d9fe /libavformat/asfdec.c | |
parent | 944f60866f507e3c0850ae9c2f30dac1da54587c (diff) | |
download | ffmpeg-e5997152f54f790229c99f237f8eb6b5b1ee683a.tar.gz |
asf: Use time_t where needed
gmtime takes a time_t not an uint64_t.
Diffstat (limited to 'libavformat/asfdec.c')
-rw-r--r-- | libavformat/asfdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c index 70f54e04f6..93e8c3cdfa 100644 --- a/libavformat/asfdec.c +++ b/libavformat/asfdec.c @@ -641,7 +641,7 @@ static int asf_read_properties(AVFormatContext *s, const GUIDParseTable *g) { ASFContext *asf = s->priv_data; AVIOContext *pb = s->pb; - uint64_t creation_time; + time_t creation_time; avio_rl64(pb); // read object size avio_skip(pb, 16); // skip File ID |