summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorSakari Bergen <sakari.bergen@beatwaves.net>2012-01-24 20:21:54 +0000
committerSakari Bergen <sakari.bergen@beatwaves.net>2012-01-24 20:21:54 +0000
commitf57da9b00e0660640c7a4cbb48f32ef63830d463 (patch)
tree49a1e3dff9e3d3fb525b9baaff9514dc45c34c98 /libs/ardour
parente6a7a679339bf71719775da7b6111cd4857bd6f0 (diff)
Show proper progress information for export while normalizing
git-svn-id: svn://localhost/ardour2/branches/3.0@11337 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/ardour/export_graph_builder.h3
-rw-r--r--libs/ardour/ardour/export_status.h3
-rw-r--r--libs/ardour/export_graph_builder.cc20
-rw-r--r--libs/ardour/export_handler.cc29
4 files changed, 49 insertions, 6 deletions
diff --git a/libs/ardour/ardour/export_graph_builder.h b/libs/ardour/ardour/export_graph_builder.h
index b4ef0a1d94..18aa8db519 100644
--- a/libs/ardour/ardour/export_graph_builder.h
+++ b/libs/ardour/ardour/export_graph_builder.h
@@ -64,6 +64,7 @@ class ExportGraphBuilder
int process (framecnt_t frames, bool last_cycle);
bool process_normalize (); // returns true when finished
bool will_normalize() { return !normalizers.empty(); }
+ unsigned get_normalize_cycle_count() const;
void reset ();
void set_current_timespan (boost::shared_ptr<ExportTimespan> span);
@@ -130,6 +131,8 @@ class ExportGraphBuilder
void add_child (FileSpec const & new_config);
bool operator== (FileSpec const & other_config) const;
+ unsigned get_normalize_cycle_count() const;
+
/// Returns true when finished
bool process ();
diff --git a/libs/ardour/ardour/export_status.h b/libs/ardour/ardour/export_status.h
index a42327c8aa..5a50777f94 100644
--- a/libs/ardour/ardour/export_status.h
+++ b/libs/ardour/ardour/export_status.h
@@ -61,6 +61,9 @@ struct ExportStatus {
volatile framecnt_t total_frames;
volatile framecnt_t processed_frames;
+ volatile uint32_t total_normalize_cycles;
+ volatile uint32_t current_normalize_cycle;
+
private:
volatile bool _aborted;
volatile bool _errors;
diff --git a/libs/ardour/export_graph_builder.cc b/libs/ardour/export_graph_builder.cc
index f01b5e0904..9b35e16530 100644
--- a/libs/ardour/export_graph_builder.cc
+++ b/libs/ardour/export_graph_builder.cc
@@ -68,6 +68,16 @@ ExportGraphBuilder::process_normalize ()
return normalizers.empty();
}
+unsigned
+ExportGraphBuilder::get_normalize_cycle_count() const
+{
+ unsigned max = 0;
+ for (std::list<Normalizer *>::const_iterator it = normalizers.begin(); it != normalizers.end(); ++it) {
+ max = std::max(max, (*it)->get_normalize_cycle_count());
+ }
+ return max;
+}
+
void
ExportGraphBuilder::reset ()
{
@@ -296,7 +306,8 @@ ExportGraphBuilder::Normalizer::Normalizer (ExportGraphBuilder & parent, FileSpe
int format = ExportFormatBase::F_RAW | ExportFormatBase::SF_Float;
tmp_file.reset (new TmpFile<float> (format, config.channel_config->get_n_chans(),
config.format->sample_rate()));
- tmp_file->FileWritten.connect_same_thread (post_processing_connection, boost::bind (&Normalizer::start_post_processing, this));
+ tmp_file->FileWritten.connect_same_thread (post_processing_connection,
+ boost::bind (&Normalizer::start_post_processing, this));
add_child (new_config);
@@ -330,6 +341,13 @@ ExportGraphBuilder::Normalizer::operator== (FileSpec const & other_config) const
config.format->normalize_target() == other_config.format->normalize_target();
}
+unsigned
+ExportGraphBuilder::Normalizer::get_normalize_cycle_count() const
+{
+ return static_cast<unsigned>(std::ceil(static_cast<float>(tmp_file->get_frames_written()) /
+ max_frames_out));
+}
+
bool
ExportGraphBuilder::Normalizer::process()
{
diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc
index 305df0d28a..42d5c8901c 100644
--- a/libs/ardour/export_handler.cc
+++ b/libs/ardour/export_handler.cc
@@ -138,8 +138,10 @@ ExportHandler::do_export (bool rt)
export_status->init();
std::set<ExportTimespanPtr> timespan_set;
for (ConfigMap::iterator it = config_map.begin(); it != config_map.end(); ++it) {
- timespan_set.insert (it->first);
- export_status->total_frames += it->first->get_length();
+ bool new_timespan = timespan_set.insert (it->first).second;
+ if (new_timespan) {
+ export_status->total_frames += it->first->get_length();
+ }
}
export_status->total_timespans = timespan_set.size();
@@ -207,18 +209,31 @@ ExportHandler::process_timespan (framecnt_t frames)
if (last_cycle) {
frames_to_read = end - process_position;
export_status->stop = true;
- normalizing = true;
} else {
frames_to_read = frames;
}
process_position += frames_to_read;
export_status->processed_frames += frames_to_read;
- export_status->progress = (float) export_status->processed_frames / export_status->total_frames;
+ export_status->progress = (float) export_status->processed_frames /
+ export_status->total_frames;
/* Do actual processing */
+ int ret = graph_builder->process (frames_to_read, last_cycle);
- return graph_builder->process (frames_to_read, last_cycle);
+ /* Start normalizing if necessary */
+ if (last_cycle) {
+ normalizing = graph_builder->will_normalize();
+ if (normalizing) {
+ export_status->total_normalize_cycles = graph_builder->get_normalize_cycle_count();
+ export_status->current_normalize_cycle = 0;
+ } else {
+ finish_timespan ();
+ return 0;
+ }
+ }
+
+ return ret;
}
int
@@ -231,6 +246,10 @@ ExportHandler::process_normalize ()
export_status->normalizing = true;
}
+ export_status->progress = (float) export_status->current_normalize_cycle /
+ export_status->total_normalize_cycles;
+ export_status->current_normalize_cycle++;
+
return 0;
}