13
0

Move implementation for DSPLoadCalculator back into header

It can be inline now that it is much simpler
This commit is contained in:
Tim Mayberry 2015-09-11 23:26:31 +10:00
parent f5e7aa11f9
commit 08e18a0cb4
3 changed files with 29 additions and 58 deletions

View File

@ -23,11 +23,9 @@
#include <cassert>
#include <algorithm>
#include "ardour/libardour_visibility.h"
namespace ARDOUR {
class LIBARDOUR_API DSPLoadCalculator {
class DSPLoadCalculator {
public:
DSPLoadCalculator()
: m_max_time_us(0)
@ -50,7 +48,34 @@ public:
m_start_timestamp_us = start_timestamp_us;
}
void set_stop_timestamp_us(int64_t stop_timestamp_us);
void set_stop_timestamp_us(int64_t stop_timestamp_us)
{
m_stop_timestamp_us = stop_timestamp_us;
/* querying the performance counter can fail occasionally (-1).
* Also on some multi-core systems, timers are CPU specific and not
* synchronized. We assume they differ more than a few milliseconds
* (4 * nominal cycle time) and simply ignore cases where the
* execution switches cores.
*/
if (m_start_timestamp_us < 0 || m_stop_timestamp_us < 0 ||
m_start_timestamp_us > m_stop_timestamp_us ||
elapsed_time_us() > max_timer_error()) {
return;
}
if (elapsed_time_us() > m_max_time_us) {
m_dsp_load = 1.0f;
} else {
const float load = elapsed_time_us() / (float)m_max_time_us;
if (load > m_dsp_load) {
m_dsp_load = load;
} else {
const float alpha = 0.2f * (m_max_time_us * 1e-6f);
m_dsp_load = m_dsp_load + alpha * (load - m_dsp_load) + 1e-12;
}
}
}
int64_t elapsed_time_us()
{

View File

@ -1,53 +0,0 @@
/*
* Copyright (C) 2015 Tim Mayberry <mojofunk@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "ardour/dsp_load_calculator.h"
namespace ARDOUR {
void
DSPLoadCalculator::set_stop_timestamp_us(int64_t stop_timestamp_us)
{
m_stop_timestamp_us = stop_timestamp_us;
/* querying the performance counter can fail occasionally (-1).
* Also on some multi-core systems, timers are CPU specific and not
* synchronized. We assume they differ more than a few milliseconds
* (4 * nominal cycle time) and simply ignore cases where the
* execution switches cores.
*/
if (m_start_timestamp_us < 0 || m_stop_timestamp_us < 0 ||
m_start_timestamp_us > m_stop_timestamp_us ||
elapsed_time_us() > max_timer_error()) {
return;
}
if (elapsed_time_us() > m_max_time_us) {
m_dsp_load = 1.0f;
} else {
const float load = elapsed_time_us() / (float)m_max_time_us;
if (load > m_dsp_load) {
m_dsp_load = load;
} else {
const float alpha = 0.2f * (m_max_time_us * 1e-6f);
m_dsp_load = m_dsp_load + alpha * (load - m_dsp_load) + 1e-12;
}
}
}
} // namespace ARDOUR

View File

@ -65,7 +65,6 @@ libardour_sources = [
'delivery.cc',
'directory_names.cc',
'diskstream.cc',
'dsp_load_calculator.cc',
'element_import_handler.cc',
'element_importer.cc',
'engine_slave.cc',