summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/disk_io.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-10-01 03:03:44 +0200
committerRobin Gareus <robin@gareus.org>2017-10-01 03:03:44 +0200
commit05ab7a46b5cf4482ca999625da7405d47fd700a6 (patch)
treee5caae0434d5fa192ae6593bce112a89679d2d6e /libs/ardour/ardour/disk_io.h
parent0431ed3d3e1d91a19f9ce382a5531f71449b2d0c (diff)
Fix recording MIDI
- Fix API call to add region(midi_region) -- set count to "1" - Forward DataRecorded() signal - remove botched merge/rebase" a4a87f56 accidentally brought back code from old-destructive API which was removed in af103cf3 and 08c13007 There is no per track NonLayered record mode anymore, it's session global. - set can_record correctly to not accidentally clear last capture sources for cont'd recording (toggle track's rec-arm)
Diffstat (limited to 'libs/ardour/ardour/disk_io.h')
-rw-r--r--libs/ardour/ardour/disk_io.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/libs/ardour/ardour/disk_io.h b/libs/ardour/ardour/disk_io.h
index 63378c4cac..bb93e51298 100644
--- a/libs/ardour/ardour/disk_io.h
+++ b/libs/ardour/ardour/disk_io.h
@@ -50,7 +50,7 @@ class LIBARDOUR_API DiskIOProcessor : public Processor
Recordable = 0x1,
Hidden = 0x2,
Destructive = 0x4,
- NonLayered = 0x8
+ NonLayered = 0x8 // deprecated (kept only for enum compat)
};
static const std::string state_node_name;
@@ -77,7 +77,6 @@ class LIBARDOUR_API DiskIOProcessor : public Processor
bool hidden() const { return _flags & Hidden; }
bool recordable() const { return _flags & Recordable; }
- bool non_layered() const { return _flags & NonLayered; }
virtual void non_realtime_locate (samplepos_t);