summaryrefslogtreecommitdiff
path: root/libs/ardour/export_handler.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-07-18 17:31:50 +0200
committerRobin Gareus <robin@gareus.org>2016-07-18 17:37:13 +0200
commit8c944c08eacf8372fc714c9c00257ec13a263ae8 (patch)
tree12a63721f31c54985a329037bf62359ad3432c2e /libs/ardour/export_handler.cc
parentb64dcac17ec6ab503198d933ef893760fb02ae22 (diff)
Normalize API rename part 2
Diffstat (limited to 'libs/ardour/export_handler.cc')
-rw-r--r--libs/ardour/export_handler.cc6
1 files changed, 3 insertions, 3 deletions
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;
}