Commit c16470d7 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '5f408333'

* commit '5f408333':
  asfdec: substract preroll time from marker presentation time
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents f6622f96 5f408333
......@@ -679,6 +679,7 @@ static int asf_read_metadata(AVFormatContext *s, int64_t size)
static int asf_read_marker(AVFormatContext *s, int64_t size)
{
AVIOContext *pb = s->pb;
ASFContext *asf = s->priv_data;
int i, count, name_len, ret;
char name[1024];
......@@ -696,6 +697,7 @@ static int asf_read_marker(AVFormatContext *s, int64_t size)
avio_rl64(pb); // offset, 8 bytes
pres_time = avio_rl64(pb); // presentation time
pres_time -= asf->hdr.preroll * 10000;
avio_rl16(pb); // entry length
avio_rl32(pb); // send time
avio_rl32(pb); // flags
......
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