Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-12-25 | Remove trivial destructors and use default where possible | David Robillard | 31 | -75/+9 | |
2017-12-25 | Use override | David Robillard | 11 | -19/+19 | |
2017-12-25 | Build clang compilation database | David Robillard | 2 | -5/+6 | |
2017-12-24 | Clean up includes in public headers | David Robillard | 64 | -74/+191 | |
2017-12-18 | Update waf | David Robillard | 1 | -5/+5 | |
2017-12-18 | Fix recursive type issues with some toolchains | David Robillard | 4 | -29/+30 | |
2017-12-18 | Fix override specifiers | David Robillard | 9 | -15/+17 | |
2017-12-17 | Simplify Tee | David Robillard | 2 | -28/+13 | |
2017-12-16 | Make events take the corresponding message directly | David Robillard | 21 | -307/+319 | |
2017-12-16 | Move sequence numbers into messages and simplify interfaces | David Robillard | 13 | -122/+114 | |
2017-12-16 | Adjust indices when ports are deleted | David Robillard | 9 | -17/+110 | |
2017-12-16 | Fix direction of test failure diffs | David Robillard | 1 | -4/+4 | |
2017-12-16 | Don't attempt to undo saving graphs | David Robillard | 1 | -1/+3 | |
2017-12-16 | Fix undo of deletions that remove connections | David Robillard | 1 | -1/+1 | |
2017-12-16 | Remove empty destructor | David Robillard | 2 | -5/+0 | |
2017-12-16 | Fix documentation warnings | David Robillard | 3 | -2/+4 | |
2017-12-16 | Add Message struct and remove tons of interface boilerplate | David Robillard | 20 | -672/+485 | |
2017-12-16 | Fix serialization of bundle start and end | David Robillard | 1 | -4/+4 | |
2017-12-16 | Clean up includes | David Robillard | 3 | -3/+3 | |
2017-12-16 | Use unbounded queue for client signals | David Robillard | 3 | -32/+18 | |
2017-12-16 | Clean up delta key comparison | David Robillard | 1 | -2/+2 | |
2017-12-16 | Make CompiledGraph::compile a free function | David Robillard | 14 | -19/+21 | |
2017-12-16 | Remove Log and Path dependency from CompiledGraph | David Robillard | 2 | -18/+12 | |
2017-12-16 | Remove Engine dependency from Task | David Robillard | 5 | -10/+24 | |
2017-12-16 | Simplify Task implementation | David Robillard | 4 | -40/+54 | |
2017-12-16 | Clean up waf options | David Robillard | 2 | -20/+22 | |
2017-12-16 | Update waf | David Robillard | 2 | -6/+5 | |
2017-07-22 | Fix saving of learned MIDI bindings | David Robillard | 1 | -2/+4 | |
2017-07-22 | Fix tests | David Robillard | 1 | -0/+1 | |
2017-05-03 | Fix LV2 driver configuration status message | David Robillard | 1 | -1/+1 | |
Thanks Dmitry Hertz | |||||
2017-04-12 | Replace use of Glib::usleep with standard facilities | David Robillard | 1 | -3/+3 | |
2017-04-12 | Manage world with a smart pointer | David Robillard | 1 | -10/+5 | |
2017-04-12 | Allow buffer size to be specified on the command line | David Robillard | 2 | -1/+2 | |
Applies to PortAudio driver only | |||||
2017-04-12 | Refuse to start if driver requires a graph and one is not provided | David Robillard | 4 | -1/+24 | |
2017-04-12 | Fix const correctness | David Robillard | 3 | -3/+3 | |
2017-04-12 | Ensure thread count is sane | David Robillard | 1 | -0/+5 | |
2017-03-20 | Fix crash when setting control ports without a value buffer | David Robillard | 1 | -1/+3 | |
Control ports should always have a value buffer for some value of "should", but crashing is never good in any case. | |||||
2017-03-20 | Revert removal of DirectDriver and fix test suite | David Robillard | 4 | -0/+126 | |
2017-03-20 | Fix link warnings with clang on OSX | David Robillard | 1 | -1/+2 | |
2017-03-20 | Fix build with clang on Linux | David Robillard | 1 | -9/+7 | |
2017-03-20 | Always use sample accurate controls | David Robillard | 8 | -36/+43 | |
This changes control port buffers to always be sequences of float, splitting cycles internally so nodes with control ports act as if they support sample accurate control input and output. This allows things like having networks of control ports manipulated by the user which are run into CV ports and having sample accurate changes end up in the CV ports even though the values were calculated by plugins with single float ports. Further work is probably necessary to thin and smooth changes that come from a user drag (perhaps there should be a mode for this?) to keep the amount of cycle splitting reasonable, and support for plugins with fixed block length. | |||||
2017-03-20 | Remove dubious Buffer::nframes() method | David Robillard | 4 | -19/+11 | |
2017-03-20 | Fix value buffer update | David Robillard | 3 | -11/+19 | |
2017-03-20 | Print PortAudio presence in configure summary | David Robillard | 1 | -0/+1 | |
2017-03-20 | Fix value buffer size logic | David Robillard | 1 | -3/+4 | |
2017-03-20 | Fix clear_buffers() prototype | David Robillard | 3 | -5/+5 | |
2017-03-20 | Fix split cycle audio output | David Robillard | 1 | -1/+1 | |
2017-03-20 | Factor out redundant overloads | David Robillard | 6 | -16/+3 | |
2017-03-20 | Use more efficient memory barriers | David Robillard | 1 | -2/+3 | |
2017-03-20 | Fix zipper noise when dragging CV port values | David Robillard | 2 | -2/+3 | |