summaryrefslogtreecommitdiff
path: root/libs/ardour/export_graph_builder.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-07-15 16:54:07 +0200
committerRobin Gareus <robin@gareus.org>2016-07-15 16:58:51 +0200
commit4203e7c9035e98987519fac3c6058d1a3279791b (patch)
tree6eafc456caf3bac5b96999a7c4a97ef28a986ccf /libs/ardour/export_graph_builder.cc
parent93ffece46502e46bf2a22c93ceccc87c0487515f (diff)
fix file-name reported to analyzer when stem-exporting
Diffstat (limited to 'libs/ardour/export_graph_builder.cc')
-rw-r--r--libs/ardour/export_graph_builder.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/export_graph_builder.cc b/libs/ardour/export_graph_builder.cc
index 49b40a6736..2e9972b47d 100644
--- a/libs/ardour/export_graph_builder.cc
+++ b/libs/ardour/export_graph_builder.cc
@@ -318,6 +318,8 @@ ExportGraphBuilder::SFC::SFC (ExportGraphBuilder &parent, FileSpec const & new_c
analyser.reset (new Analyser (config.format->sample_rate(), channels, max_frames,
(framecnt_t) ceil (duration * config.format->sample_rate () / (double) sample_rate)));
chunker->add_output (analyser);
+
+ config.filename->set_channel_config (config.channel_config);
parent.add_analyser (config.filename->get_path (config.format), analyser);
}