mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
a) moved metering and meter falloff code into libardour
b) added initial "big meter" mode for tranzport c) fixed some lock issues in ARDOUR::IO objects d) generic_midi control surface module now compiles and loads git-svn-id: svn://localhost/trunk/ardour2@450 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
7e8a982245
commit
a157537898
36 changed files with 530 additions and 380 deletions
|
|
@ -7,7 +7,15 @@ using namespace ARDOUR;
|
|||
ControlProtocol*
|
||||
new_tranzport_protocol (ControlProtocolDescriptor* descriptor, Session* s)
|
||||
{
|
||||
return new TranzportControlProtocol (*s);
|
||||
TranzportControlProtocol* tcp = new TranzportControlProtocol (*s);
|
||||
|
||||
if (tcp->init ()) {
|
||||
delete tcp;
|
||||
return 0;
|
||||
}
|
||||
|
||||
return tcp;
|
||||
|
||||
}
|
||||
|
||||
void
|
||||
|
|
@ -18,10 +26,12 @@ delete_tranzport_protocol (ControlProtocolDescriptor* descriptor, ControlProtoco
|
|||
|
||||
static ControlProtocolDescriptor tranzport_descriptor = {
|
||||
name : "Tranzport",
|
||||
id : "uri://ardour.org/surfaces/tranzport:0",
|
||||
ptr : 0,
|
||||
module : 0,
|
||||
initialize : new_tranzport_protocol,
|
||||
destroy : delete_tranzport_protocol
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue