Commit 0a03271e authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '7f388c0f'

* commit '7f388c0f':
  asfdec: remove the wrong condition
Merged-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parents b04b0210 7f388c0f
......@@ -905,7 +905,7 @@ static int asf_read_data(AVFormatContext *s, const GUIDParseTable *g)
uint64_t size = asf->data_size = avio_rl64(pb);
int i;
if (!asf->data_reached && pb->seekable) {
if (!asf->data_reached) {
asf->data_reached = 1;
asf->data_offset = asf->offset;
}
......
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