Skip to content
Snippets Groups Projects
Commit 44257ef4 authored by Ronald S. Bultje's avatar Ronald S. Bultje
Browse files

asf: only set index_read if the index contained entries.

This allows falling back to a binary search if the file contains no
index, thus fixing seeking in such files (e.g. luckynight.wma).
parent a9401981
Branches
Tags
No related merge requests found
......@@ -1235,7 +1235,7 @@ static void asf_build_simple_index(AVFormatContext *s, int stream_index)
last_pos=pos;
}
}
asf->index_read= 1;
asf->index_read= ict > 0;
}
avio_seek(s->pb, current_pos, SEEK_SET);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment