Browse Source

asf: Use time_t where needed

gmtime takes a time_t not an uint64_t.
tags/n2.8
Luca Barbato 10 years ago
parent
commit
e5997152f5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/asfdec.c

+ 1
- 1
libavformat/asfdec.c View File

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


Loading…
Cancel
Save