part two of: make region gain line visibility global, not per-region
[ardour.git] / libs / ardour / ardour / export_status.h
index a42327c8aae0d421ceccabcbb0890d53de863648..56b15eada19ebdf59af49e60433220a68f4ffdec 100644 (file)
@@ -52,15 +52,21 @@ struct ExportStatus {
 
        /* Progress info */
 
-       volatile float          progress;
        volatile bool           normalizing;
 
        volatile uint32_t       total_timespans;
        volatile uint32_t       timespan;
+       std::string             timespan_name;
 
        volatile framecnt_t     total_frames;
        volatile framecnt_t     processed_frames;
 
+       volatile framecnt_t     total_frames_current_timespan;
+       volatile framecnt_t     processed_frames_current_timespan;
+
+       volatile uint32_t       total_normalize_cycles;
+       volatile uint32_t       current_normalize_cycle;
+
   private:
        volatile bool          _aborted;
        volatile bool          _errors;