add finite state machine to control/manage transport state
[ardour.git] / libs / ardour / ardour / export_status.h
index f250ae0dc6b062a04b69bf05e06ba646ba374acd..7f36e60e061301209a31ffd8b6c54050d448ad19 100644 (file)
@@ -1,22 +1,24 @@
 /*
-    Copyright (C) 2008 Paul Davis
-    Author: Sakari Bergen
-
-    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.
-
-*/
+ * Copyright (C) 2008-2012 Sakari Bergen <sakari.bergen@beatwaves.net>
+ * Copyright (C) 2008-2017 Paul Davis <paul@linuxaudiosystems.com>
+ * Copyright (C) 2008 Nick Mainsbridge <mainsbridge@gmail.com>
+ * Copyright (C) 2009-2012 David Robillard <d@drobilla.net>
+ * Copyright (C) 2016-2019 Robin Gareus <robin@gareus.org>
+ *
+ * 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.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
 
 #ifndef __ardour_export_status_h__
 #define __ardour_export_status_h__
@@ -52,8 +54,8 @@ class LIBARDOUR_API ExportStatus {
        }
        Glib::Threads::Mutex& lock () { return _run_lock; }
 
-       PBD::Signal0<void>      Finished;
-       void finish ();
+       PBD::Signal1<void,TransportRequestSource> Finished;
+       void finish (TransportRequestSource);
 
        void cleanup ();
 
@@ -62,6 +64,7 @@ class LIBARDOUR_API ExportStatus {
        volatile enum Progress {
                Exporting,
                Normalizing,
+               Encoding,
                Tagging,
                Uploading,
                Command }
@@ -71,14 +74,14 @@ class LIBARDOUR_API ExportStatus {
        volatile uint32_t       timespan;
        std::string             timespan_name;
 
-       volatile framecnt_t     total_frames;
-       volatile framecnt_t     processed_frames;
+       volatile samplecnt_t    total_samples;
+       volatile samplecnt_t    processed_samples;
 
-       volatile framecnt_t     total_frames_current_timespan;
-       volatile framecnt_t     processed_frames_current_timespan;
+       volatile samplecnt_t    total_samples_current_timespan;
+       volatile samplecnt_t    processed_samples_current_timespan;
 
-       volatile uint32_t       total_normalize_cycles;
-       volatile uint32_t       current_normalize_cycle;
+       volatile uint32_t       total_postprocessing_cycles;
+       volatile uint32_t       current_postprocessing_cycle;
 
        AnalysisResults         result_map;