summaryrefslogtreecommitdiff
path: root/libs/ardour/port_insert.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-11-25 19:07:57 +0100
committerRobin Gareus <robin@gareus.org>2015-11-25 19:09:23 +0100
commit0189b1eae98e1f1265fe36cea30f126577964a92 (patch)
tree7cd3fd4d0882fc3380611c05f812239e6035f846 /libs/ardour/port_insert.cc
parentfe06e3b7e81feebb0be5544fdd6bf3a96295a89e (diff)
restore measured Insert latency
(XML underscore vs dash)
Diffstat (limited to 'libs/ardour/port_insert.cc')
-rw-r--r--libs/ardour/port_insert.cc28
1 files changed, 14 insertions, 14 deletions
diff --git a/libs/ardour/port_insert.cc b/libs/ardour/port_insert.cc
index 46d54cd445..ce34048dde 100644
--- a/libs/ardour/port_insert.cc
+++ b/libs/ardour/port_insert.cc
@@ -172,10 +172,10 @@ PortInsert::state (bool full)
node.add_property ("type", "port");
snprintf (buf, sizeof (buf), "%" PRIu32, _bitslot);
node.add_property ("bitslot", buf);
- snprintf (buf, sizeof (buf), "%" PRId64, _measured_latency);
- node.add_property("latency", buf);
- snprintf (buf, sizeof (buf), "%u", _session.get_block_size());
- node.add_property("block_size", buf);
+ snprintf (buf, sizeof (buf), "%" PRId64, _measured_latency);
+ node.add_property("latency", buf);
+ snprintf (buf, sizeof (buf), "%u", _session.get_block_size());
+ node.add_property("block-size", buf);
return node;
}
@@ -210,17 +210,17 @@ PortInsert::set_state (const XMLNode& node, int version)
return -1;
}
- uint32_t blocksize = 0;
- if ((prop = node.property ("block_size")) != 0) {
- sscanf (prop->value().c_str(), "%u", &blocksize);
- }
+ uint32_t blocksize = 0;
+ if ((prop = node.property ("block-size")) != 0) {
+ sscanf (prop->value().c_str(), "%u", &blocksize);
+ }
- //if the jack period is the same as when the value was saved, we can recall our latency..
- if ( (_session.get_block_size() == blocksize) && (prop = node.property ("latency")) != 0) {
- uint32_t latency = 0;
- sscanf (prop->value().c_str(), "%u", &latency);
- _measured_latency = latency;
- }
+ //if the jack period is the same as when the value was saved, we can recall our latency..
+ if ( (_session.get_block_size() == blocksize) && (prop = node.property ("latency")) != 0) {
+ uint32_t latency = 0;
+ sscanf (prop->value().c_str(), "%u", &latency);
+ _measured_latency = latency;
+ }
if (!node.property ("ignore-bitslot")) {
if ((prop = node.property ("bitslot")) == 0) {