- Made HLS no longer skip first fragment.
- Ignore metadata tracks and invalid tracks for buffer calculations. - Fixed statistics.
This commit is contained in:
parent
a604d616f7
commit
401fe65979
5 changed files with 6 additions and 9 deletions
|
@ -652,13 +652,13 @@ namespace IPC {
|
|||
|
||||
///\brief Sets checksum field
|
||||
void statExchange::crc(unsigned int sum) {
|
||||
htobl(data + 186, sum);
|
||||
htobl(data + 168, sum);
|
||||
}
|
||||
|
||||
///\brief Gets checksum field
|
||||
unsigned int statExchange::crc() {
|
||||
unsigned int result;
|
||||
btohl(data + 186, result);
|
||||
btohl(data + 168, result);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue