Move implementation for DSPLoadCalculator back into header
authorTim Mayberry <mojofunk@gmail.com>
Fri, 11 Sep 2015 13:26:31 +0000 (23:26 +1000)
committerTim Mayberry <mojofunk@gmail.com>
Wed, 16 Sep 2015 01:22:16 +0000 (11:22 +1000)
It can be inline now that it is much simpler

libs/ardour/ardour/dsp_load_calculator.h
libs/ardour/dsp_load_calculator.cc [deleted file]
libs/ardour/wscript

index 42386e2cb02fa4de79ee80acfc5a1cea0cec8c20..1da9786d367d6da007e098ed3cd87e0df785ff68 100644 (file)
 #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()
        {
diff --git a/libs/ardour/dsp_load_calculator.cc b/libs/ardour/dsp_load_calculator.cc
deleted file mode 100644 (file)
index 789d370..0000000
+++ /dev/null
@@ -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
index becb2e117d91d6b5fe151fcf7939657a82096c2e..c0049b55fe85d8ced36ad2e62c95a0ed97e63851 100644 (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',