Browse Source

hls: Return all packets from a previous variant before moving on to the next one

This serves as a safeguard; normally we want to use the dts
comparison to interleave packets from all active variants. If that
dts comparison for some reason doesn't work as intended, make sure
that all packets in all variants for a certain sequence number have
been returned before moving on to the next one.

Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n2.1
Martin Storsjö 12 years ago
parent
commit
eb33ba04e0
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      libavformat/hls.c

+ 5
- 2
libavformat/hls.c View File

@@ -638,10 +638,13 @@ start:
}
}
}
/* Check if this stream has the packet with the lowest dts */
/* Check if this stream still is on an earlier segment number, or
* has the packet with the lowest dts */
if (var->pkt.data) {
if (minvariant < 0 ||
var->pkt.dts < c->variants[minvariant]->pkt.dts)
var->cur_seq_no < c->variants[minvariant]->cur_seq_no ||
(var->cur_seq_no == c->variants[minvariant]->cur_seq_no &&
var->pkt.dts < c->variants[minvariant]->pkt.dts))
minvariant = i;
}
}


Loading…
Cancel
Save