X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fexport_handler.cc;h=ac2f7b0bd37ac1718219eb46666938fcdf6cfbcc;hb=47ba20143e06445a9977f4757d816439ea8042d0;hp=8e24c80967e426943b8aaf8e186a7818ca3c6934;hpb=b64dcac17ec6ab503198d933ef893760fb02ae22;p=ardour.git diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc index 8e24c80967..ac2f7b0bd3 100644 --- a/libs/ardour/export_handler.cc +++ b/libs/ardour/export_handler.cc @@ -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; }