X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fexport_status.cc;h=0f7938bb7f2cb3d4a0ab31297cf96e862a882e86;hb=f8737f701264c8514006c7dbbf26025b62f98e39;hp=eb0a3504b45e0e19a372eba79add08467c710026;hpb=bb9cc45cd22af67ac275a5e73accbe14fee664d8;p=ardour.git diff --git a/libs/ardour/export_status.cc b/libs/ardour/export_status.cc index eb0a3504b4..0f7938bb7f 100644 --- a/libs/ardour/export_status.cc +++ b/libs/ardour/export_status.cc @@ -18,6 +18,8 @@ */ +#include + #include "ardour/export_status.h" namespace ARDOUR @@ -37,17 +39,19 @@ ExportStatus::init () _finished = false; _errors = false; - stage = export_None; - progress = 0.0; + normalizing = false; total_timespans = 0; timespan = 0; - total_channel_configs = 0; - channel_config = 0; + total_frames = 0; + processed_frames = 0; + + total_frames_current_timespan = 0; + processed_frames_current_timespan = 0; - total_formats = 0; - format = 0; + total_normalize_cycles = 0; + current_normalize_cycle = 0; } void @@ -57,7 +61,6 @@ ExportStatus::abort (bool error_occurred) _finished = true; _errors = _errors || error_occurred; running = false; - Aborting (); } void @@ -65,7 +68,7 @@ ExportStatus::finish () { _finished = true; running = false; - Finished(); + Finished(); /* EMIT SIGNAL */ } } // namespace ARDOUR