Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-12-14 | Add missing include | David Robillard | 1 | -0/+1 | |
2016-12-14 | Remove override qualifiers | David Robillard | 2 | -6/+6 | |
2016-12-14 | Don't shrink ports array | David Robillard | 1 | -3/+0 | |
2016-12-14 | Fix real-time safety of control bindings | David Robillard | 8 | -152/+197 | |
2016-12-14 | Fix memory errors | David Robillard | 2 | -1/+2 | |
2016-12-14 | Add option to not build LV2 plugin | David Robillard | 1 | -10/+11 | |
2016-12-14 | Fix real-time issues with buffer allocation | David Robillard | 16 | -125/+207 | |
2016-12-14 | Remove some use of shared_ptr in the real-time thread | David Robillard | 2 | -16/+22 | |
2016-12-14 | Don't use path to determine if nodes are the main graph | David Robillard | 3 | -5/+13 | |
Doing so is slower and touches std::string code that could in theory not be RT-safe (though always is in practice). | |||||
2016-12-13 | Remove virtual inheritance from Port hierarchy | David Robillard | 19 | -196/+130 | |
This was confusing stoat, and is questionable design anyway. The OutputPort functionality has been moved to PortImpl, which is a basic port with buffers suitable for use as an output, and is overridden by InputPort and DuplexPort where necessary. | |||||
2016-12-13 | Fix some real-time safety issues | David Robillard | 13 | -40/+62 | |
2016-12-04 | Fix initialization order warning | David Robillard | 1 | -1/+1 | |
2016-10-29 | Remove useless warning | David Robillard | 1 | -1/+0 | |
2016-10-29 | Fix running as LV2 with disconnected ports | David Robillard | 1 | -0/+4 | |
2016-10-29 | Fix minor memory issues | David Robillard | 2 | -1/+2 | |
2016-10-14 | Don't request plugins until necessary | David Robillard | 1 | -2/+0 | |
2016-10-14 | Preserve bundles over atom transport | David Robillard | 1 | -0/+4 | |
2016-10-14 | Fix LV2 initialisation | David Robillard | 3 | -7/+18 | |
2016-10-14 | Fix initial display of embedded GUIs | David Robillard | 2 | -1/+26 | |
2016-10-14 | Fix occasionally stuck event queue | David Robillard | 2 | -9/+13 | |
2016-10-14 | Fix potential store deadlock | David Robillard | 9 | -9/+9 | |
2016-10-14 | Never store ingen:activity properties | David Robillard | 1 | -6/+19 | |
2016-10-14 | Fix sequence ports with values | David Robillard | 8 | -21/+41 | |
2016-10-14 | Fix communication with connected sequence ports | David Robillard | 5 | -29/+45 | |
2016-10-14 | Simplify port model code | David Robillard | 5 | -47/+28 | |
2016-10-14 | Improve documentation | David Robillard | 2 | -9/+9 | |
2016-10-13 | Write log to stdout/stderr when GUI is present | David Robillard | 1 | -1/+3 | |
2016-10-13 | Clean up protocol documentation | David Robillard | 2 | -60/+103 | |
2016-10-06 | Add plugin state saving | David Robillard | 15 | -60/+148 | |
This only works with a server-side save, so the GUI now uses that if the server is not running remotely, where "remotely" is defined as "via TCP". This isn't perfect, since running ingen via TCP locally is a perfectly valid thing to do, but it will do for now. | |||||
2016-10-02 | Add event outputs to Trigger and Controller | David Robillard | 7 | -53/+117 | |
2016-10-02 | Fix MIDI I/O | David Robillard | 1 | -1/+3 | |
2016-10-02 | Fix status bar text for subgraph ports | David Robillard | 1 | -3/+4 | |
2016-10-02 | Fix saving and loading subgraphs | David Robillard | 5 | -56/+68 | |
2016-10-02 | Fix whitespace | David Robillard | 2 | -1/+2 | |
2016-10-02 | Fix display of initial port values | David Robillard | 2 | -1/+9 | |
2016-10-02 | Fix copy/paste of internal blocks | David Robillard | 2 | -2/+26 | |
2016-10-02 | Fix monitoring sequence ports | David Robillard | 1 | -2/+6 | |
2016-10-02 | Fix sending UI events to sequence ports | David Robillard | 2 | -2/+5 | |
2016-10-02 | Fix custom UI port notifications | David Robillard | 1 | -1/+1 | |
2016-10-02 | Implement microsecond clock for Linux and OSX | David Robillard | 4 | -10/+65 | |
2016-10-02 | Fix default doap:name of saved graphs | David Robillard | 1 | -3/+10 | |
2016-10-02 | Fix properties of control/notify ports | David Robillard | 2 | -6/+8 | |
2016-10-02 | Fix loading a graph by copying from the filesystem | David Robillard | 1 | -1/+1 | |
2016-10-02 | Fix unit test responses and ensure events succeed | David Robillard | 6 | -7/+7 | |
2016-10-02 | Defer graph compilation in atomic bundles | David Robillard | 35 | -81/+225 | |
This avoids situations like compiling a graph hundreds of times when it is loaded because it has hundreds of nodes and each event triggers a re-compile. This speeds things up dramatically, but exacerbates the theoretical problem of there not being enough time in a cycle to execute a bundle. As far as I can tell, the execute phase of events is very fast, so hundreds or thousands can easily run in a tiny fraction of the process cycle, but this still needs resolution to be truly hard real-time. What probably needs to happen is that all context and state used to process is moved to CompiledGraph and nodes do not access their own fields at all, but have some references into the CompiledGraph. This way, a compiled graph is separate from its "source code", and an old one could continue to be run while a new one is beng applied across several cycles. | |||||
2016-10-02 | Use more efficient std::lock_guard where possible | David Robillard | 6 | -6/+6 | |
2016-10-02 | Show audio and load information in status line | David Robillard | 12 | -55/+312 | |
2016-10-02 | Add parallel graph execution | David Robillard | 16 | -158/+457 | |
2016-10-02 | Add parallelism-aware graph traversal | David Robillard | 18 | -119/+430 | |
2016-10-02 | Replace Delay internal with simpler BlockDelay | David Robillard | 13 | -246/+170 | |