HLS will now force-skip the first fragment if live and there are more than 2 fragments buffered.
This commit is contained in:
parent
875e8ef317
commit
c6b860d54e
1 changed files with 4 additions and 0 deletions
|
@ -57,6 +57,10 @@ namespace Mist {
|
||||||
"#EXT-X-TARGETDURATION:" << (longestFragment / 1000) + 1 << "\r\n"
|
"#EXT-X-TARGETDURATION:" << (longestFragment / 1000) + 1 << "\r\n"
|
||||||
"#EXT-X-MEDIA-SEQUENCE:" << myMeta.tracks[tid].missedFrags << "\r\n";
|
"#EXT-X-MEDIA-SEQUENCE:" << myMeta.tracks[tid].missedFrags << "\r\n";
|
||||||
for (std::deque<DTSC::Fragment>::iterator it = myMeta.tracks[tid].fragments.begin(); it != myMeta.tracks[tid].fragments.end(); it++){
|
for (std::deque<DTSC::Fragment>::iterator it = myMeta.tracks[tid].fragments.begin(); it != myMeta.tracks[tid].fragments.end(); it++){
|
||||||
|
if (myMeta.live && myMeta.tracks[tid].fragments.size() > 2 && it == myMeta.tracks[tid].fragments.begin()){
|
||||||
|
//skip the first fragment if live and there are more than 2 fragments.
|
||||||
|
continue;
|
||||||
|
}
|
||||||
long long int starttime = myMeta.tracks[tid].getKey(it->getNumber()).getTime();
|
long long int starttime = myMeta.tracks[tid].getKey(it->getNumber()).getTime();
|
||||||
|
|
||||||
if (it != (myMeta.tracks[tid].fragments.end() - 1)){
|
if (it != (myMeta.tracks[tid].fragments.end() - 1)){
|
||||||
|
|
Loading…
Add table
Reference in a new issue