Zrythm
a highly automated and intuitive digital audio workstation
|
Port connections manager. More...
#include <dsp/port_connections_manager.h>
Data Fields | |
PortConnection ** | connections |
Connections. | |
int | num_connections |
size_t | connections_size |
GHashTable * | src_ht |
Hashtable to speedup lookup by source port identifier. | |
GHashTable * | dest_ht |
Hashtable to speedup lookup by destination port identifier. | |
Port connections manager.
Definition at line 38 of file port_connections_manager.h.
PortConnection** PortConnectionsManager::connections |
Connections.
Definition at line 41 of file port_connections_manager.h.
size_t PortConnectionsManager::connections_size |
Definition at line 43 of file port_connections_manager.h.
GHashTable* PortConnectionsManager::dest_ht |
Hashtable to speedup lookup by destination port identifier.
Key: hash of destination port identifier Value: A pointer to a PortConnection from PortConnectionsManager.connections.
Definition at line 61 of file port_connections_manager.h.
int PortConnectionsManager::num_connections |
Definition at line 42 of file port_connections_manager.h.
GHashTable* PortConnectionsManager::src_ht |
Hashtable to speedup lookup by source port identifier.
Key: hash of source port identifier Value: A pointer to a PortConnection from PortConnectionsManager.connections.
Definition at line 52 of file port_connections_manager.h.