Fixed 32-bit compile issues

This commit is contained in:
Thulinma 2019-01-25 22:55:32 +01:00
parent 9671e385ce
commit 7565704fdc
32 changed files with 87 additions and 103 deletions

View file

@ -310,8 +310,8 @@ namespace DTSC {
std::string getIdentifier();
std::string getWritableIdentifier();
unsigned int trackID;
unsigned long long firstms;
unsigned long long lastms;
uint64_t firstms;
uint64_t lastms;
int bps;
int max_bps;
int missedFrags;
@ -366,8 +366,8 @@ namespace DTSC {
bool live;
bool merged;
uint16_t version;
long long int moreheader;
long long int bufferWindow;
int64_t moreheader;
int64_t bufferWindow;
int64_t bootMsOffset;///< Millis to add to packet timestamps to get millis since system boot.
std::string sourceURI;
JSON::Value inputLocalVars;