[AFV] Ref T730 incorporated MS fixes

see https://discordapp.com/channels/539048679160676382/623947987822837779/633025547999510530
This commit is contained in:
Klaus Basan
2019-10-13 23:52:49 +02:00
parent 563e5d85be
commit de75cdc214
4 changed files with 20 additions and 14 deletions

View File

@@ -272,7 +272,7 @@ namespace BlackCore
static constexpr int PositionUpdatesMs = 5000; //!< position timer
static constexpr int SampleRate = 48000;
static constexpr int FrameSize = 960; //!< 20ms
static constexpr int FrameSize = static_cast<int>(SampleRate * 0.02); //!< 20ms
static constexpr double MinDbIn = -18.0;
static constexpr double MaxDbIn = 18.0;
static constexpr double MinDbOut = -60.0;