Commit f73901f8 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '0c082565'

* commit '0c082565':
  asfdec: short-circuit seeking to the start of stream

Conflicts:
	libavformat/asfdec.c
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 5634c951 0c082565
......@@ -1538,6 +1538,13 @@ static int asf_read_seek(AVFormatContext *s, int stream_index,
return ret;
}
/* explicitly handle the case of seeking to 0 */
if (!pts) {
asf_reset_header(s);
avio_seek(s->pb, s->data_offset, SEEK_SET);
return 0;
}
if (!asf->index_read) {
ret = asf_build_simple_index(s, stream_index);
if (ret < 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