Requests: Increase InputVolumeMeters update rate to 20/sec

We were using a 60ms interval before, which just feels too slow.
A 50ms interval feels much better.
This commit is contained in:
tt2468 2021-11-22 03:51:41 -08:00
parent d48ddef031
commit 5704ea2970

View File

@ -75,7 +75,7 @@ namespace Utils {
typedef std::unique_ptr<Meter> MeterPtr;
public:
Handler(UpdateCallback cb, uint64_t updatePeriod = 60);
Handler(UpdateCallback cb, uint64_t updatePeriod = 50);
~Handler();
private: