Normalize API rename part 2
[ardour.git] / libs / ardour / export_handler.cc
index 8e24c80967e426943b8aaf8e186a7818ca3c6934..ac2f7b0bd37ac1718219eb46666938fcdf6cfbcc 100644 (file)
@@ -275,8 +275,8 @@ ExportHandler::process_timespan (framecnt_t frames)
        if (last_cycle) {
                post_processing = graph_builder->need_postprocessing ();
                if (post_processing) {
-                       export_status->total_normalize_cycles = graph_builder->get_normalize_cycle_count();
-                       export_status->current_normalize_cycle = 0;
+                       export_status->total_postprocessing_cycles = graph_builder->get_postprocessing_cycle_count();
+                       export_status->current_postprocessing_cycle = 0;
                } else {
                        finish_timespan ();
                        return 0;
@@ -300,7 +300,7 @@ ExportHandler::post_process ()
                }
        }
 
-       export_status->current_normalize_cycle++;
+       export_status->current_postprocessing_cycle++;
 
        return 0;
 }