Commit 72527d9c authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '872fab4a'

* commit '872fab4a':
  asfdec: Fix reading from the pipe
Merged-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parents 47d07733 872fab4a
......@@ -922,7 +922,8 @@ static int asf_read_data(AVFormatContext *s, const GUIDParseTable *g)
size, asf->nb_packets);
avio_skip(pb, 2); // skip reserved field
asf->first_packet_offset = avio_tell(pb);
align_position(pb, asf->offset, asf->data_size);
if (pb->seekable)
align_position(pb, asf->offset, asf->data_size);
return 0;
}
......
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