Fixed live support for DTSC metadata, improved track reset and ordering handling.

This commit is contained in:
Thulinma 2013-12-16 13:07:57 +01:00
parent 88dfb7d535
commit fc12369e5e
3 changed files with 50 additions and 43 deletions

View file

@ -77,13 +77,11 @@ namespace DTSC {
if (seekTime < rhs.seekTime){
return true;
}else{
if (seekTime == rhs.seekTime){
if (trackID < rhs.trackID){
return true;
}
if (seekTime > rhs.seekTime){
return false;
}
}
return false;
return (trackID < rhs.trackID);
}
volatile long long unsigned int seekTime;
volatile unsigned int trackID;