Fixed live support for DTSC metadata, improved track reset and ordering handling.
This commit is contained in:
parent
88dfb7d535
commit
fc12369e5e
3 changed files with 50 additions and 43 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue