GUI side of microseconds_t => int64_t

This commit is contained in:
Paul Davis 2021-06-28 14:47:39 -06:00
parent b20a541d7e
commit f8a5d45b7a
3 changed files with 8 additions and 8 deletions

View file

@ -125,8 +125,8 @@ DspStatisticsGUI::stop_updating ()
void void
DspStatisticsGUI::update () DspStatisticsGUI::update ()
{ {
uint64_t min = 0; PBD::microseconds_t min = 0;
uint64_t max = 0; PBD::microseconds_t max = 0;
double avg = 0.; double avg = 0.;
double dev = 0.; double dev = 0.;
char buf[64]; char buf[64];
@ -205,8 +205,8 @@ DspStatisticsGUI::update ()
if (_session) { if (_session) {
uint64_t smin = 0; PBD::microseconds_t smin = 0;
uint64_t smax = 0; PBD::microseconds_t smax = 0;
double savg = 0.; double savg = 0.;
double sdev = 0.; double sdev = 0.;

View file

@ -58,7 +58,7 @@ private:
ArdourWidgets::ArdourButton _reset_button; ArdourWidgets::ArdourButton _reset_button;
Gtk::DrawingArea _darea; Gtk::DrawingArea _darea;
uint64_t _min, _max; PBD::microseconds_t _min, _max;
double _avg, _dev; double _avg, _dev;
bool _valid; bool _valid;
}; };

View file

@ -104,9 +104,9 @@ public:
GATOMIC_QUAL gint _suspend_counter; GATOMIC_QUAL gint _suspend_counter;
#ifndef NDEBUG #ifndef NDEBUG
std::vector<uint64_t> rapid_eps_count; std::vector<int64_t> rapid_eps_count;
std::vector<uint64_t> super_rapid_eps_count; std::vector<int64_t> super_rapid_eps_count;
std::vector<uint64_t> fps_eps_count; std::vector<int64_t> fps_eps_count;
private: private: