summaryrefslogtreecommitdiff
path: root/libs/ardour/capturing_processor.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-03-01 18:08:57 +0000
committerCarl Hetherington <carl@carlh.net>2011-03-01 18:08:57 +0000
commitcda09a0878eec8e553b3800fe2decd0c110e487b (patch)
treebe7155a06a6357d3d2d555627e94c51052d2ad4f /libs/ardour/capturing_processor.cc
parent35ea41228023b3070ad2b12feca79e6d2fcfc4db (diff)
Make sure CapturingProcessors write a type to their state node so that they can be reloaded without a crash.
git-svn-id: svn://localhost/ardour2/branches/3.0@9006 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/capturing_processor.cc')
-rw-r--r--libs/ardour/capturing_processor.cc12
1 files changed, 10 insertions, 2 deletions
diff --git a/libs/ardour/capturing_processor.cc b/libs/ardour/capturing_processor.cc
index 2fa83ace81..0937f1f377 100644
--- a/libs/ardour/capturing_processor.cc
+++ b/libs/ardour/capturing_processor.cc
@@ -25,8 +25,8 @@
namespace ARDOUR {
CapturingProcessor::CapturingProcessor (Session & session)
- : Processor (session, X_("capture point"))
- , block_size (session.engine().frames_per_cycle())
+ : Processor (session, X_("capture point"))
+ , block_size (session.engine().frames_per_cycle())
{
realloc_buffers ();
}
@@ -72,4 +72,12 @@ CapturingProcessor::realloc_buffers()
capture_buffers.ensure_buffers (_configured_input, block_size);
}
+XMLNode &
+CapturingProcessor::state (bool full)
+{
+ XMLNode& node = Processor::state (full);
+
+ node.add_property (X_("type"), X_("capture"));
+}
+
} // namespace ARDOUR