mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 20:43:08 +02:00
fix audio hist array initializer for WIN32
This commit is contained in:
parent
800744a139
commit
d899391a1a
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ private:
|
|||
static const int MIX_TIMES_TRAILING_SECONDS = 10;
|
||||
std::chrono::microseconds _sumMixTimes { 0 };
|
||||
uint64_t _sumMixTimesTrailing { 0 };
|
||||
uint64_t _sumMixTimesHistory[MIX_TIMES_TRAILING_SECONDS] { 0 };
|
||||
uint64_t _sumMixTimesHistory[MIX_TIMES_TRAILING_SECONDS] {};
|
||||
int _sumMixTimesIndex { 0 };
|
||||
|
||||
static int _numStaticJitterFrames; // -1 denotes dynamic jitter buffering
|
||||
|
|
Loading…
Reference in a new issue