Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-08-17 | Factor URI mappings out from jalv_open() | David Robillard | 1 | -79/+91 | |
2022-08-17 | Make worker opaque | David Robillard | 4 | -86/+181 | |
2022-08-17 | Clean up and document worker implementation | David Robillard | 1 | -38/+52 | |
2022-08-17 | Define JALV_BEGIN_DECLS and define JALV_END_DECLS | David Robillard | 13 | -72/+56 | |
One lines good, three lines bad. | |||||
2022-08-17 | Fix thread-safety of plugin/UI communication rings | David Robillard | 3 | -50/+95 | |
2022-08-17 | Fix comment typo | David Robillard | 1 | -1/+1 | |
2022-08-17 | Factor out jalv_write_event() | David Robillard | 4 | -21/+36 | |
2022-08-17 | Factor out jalv_write_control() | David Robillard | 5 | -32/+43 | |
2022-08-17 | Factor out the concept of writing a "packet" in the worker | David Robillard | 1 | -7/+13 | |
2022-08-17 | Update zix | David Robillard | 10 | -149/+665 | |
2022-08-17 | Fix misleading variable name | David Robillard | 1 | -4/+4 | |
An atom also has a "body", and sometimes this "body" is itself an atom. | |||||
2022-08-17 | Relax unnecessarily narrow types | David Robillard | 5 | -31/+15 | |
2022-08-17 | Clean up log messages for consistency | David Robillard | 2 | -4/+4 | |
2022-08-17 | Clarify communication function names | David Robillard | 3 | -22/+23 | |
2022-08-17 | Make jalv_ui_port_index() private | David Robillard | 2 | -12/+11 | |
2022-08-17 | Propagate worker errors to the scheduler when possible | David Robillard | 2 | -4/+6 | |
2022-08-17 | Clean up atom dumping code | David Robillard | 3 | -47/+36 | |
2022-08-17 | Fix spurious transport messages | David Robillard | 2 | -4/+6 | |
The beats_per_minute from JACK is only valid if JackPositionBBT is set. On some JACK implementations (at least pipewire), this value is otherwise garbage, which causes a lot of transport message spam. | |||||
2022-08-17 | Remove unnecessary casts | David Robillard | 2 | -7/+7 | |
2022-08-17 | Remove lilv dependency from worker.h and worker.c | David Robillard | 3 | -8/+7 | |
2022-08-17 | Use clearer names for communication rings | David Robillard | 5 | -50/+50 | |
2022-08-17 | Fix whitespace | David Robillard | 2 | -2/+6 | |
2022-08-17 | Fix atom buffer alignment | David Robillard | 3 | -19/+38 | |
2022-08-17 | Simplify atom buffer allocation code | David Robillard | 1 | -13/+12 | |
2022-08-17 | Use lv2_atom_pad_size() | David Robillard | 1 | -9/+4 | |
2022-08-17 | Fix memory leaks | David Robillard | 3 | -8/+10 | |
2022-08-17 | Fix whitespace and use LV2_INSTANCE_ACCESS_URI | David Robillard | 1 | -4/+9 | |
2022-08-17 | Use default member initializers | David Robillard | 2 | -10/+5 | |
2022-08-17 | Make NEWS file readable by dpkg-parsechangelog | David Robillard | 2 | -11/+21 | |
2022-08-17 | Switch to meson build system | David Robillard | 31 | -562/+1160 | |
2022-08-17 | Fix man page headers | David Robillard | 4 | -4/+5 | |
2022-08-17 | Suppress new warnings in clang and clang-tidy 14 | David Robillard | 3 | -4/+4 | |
2022-08-17 | Add missing include | David Robillard | 1 | -0/+1 | |
2022-08-17 | Avoid snprintf() | David Robillard | 1 | -1/+2 | |
2022-08-17 | Remove redundant struct tags | David Robillard | 1 | -3/+5 | |
2022-08-17 | Use C++14 | David Robillard | 2 | -8/+4 | |
2022-08-17 | Remove unused member | David Robillard | 2 | -2/+0 | |
2022-08-17 | Separate JalvLog from Jalv | David Robillard | 4 | -7/+17 | |
2022-08-17 | Use a consistent interface for error/warning/debug logging | David Robillard | 8 | -77/+125 | |
Towards the ability to hook the log into other things (for display in a UI, for example). The implementation still just prints to stderr, although now with consistent formatting. | |||||
2022-08-17 | Print status information consistently to stdout | David Robillard | 3 | -12/+9 | |
2022-08-17 | Gracefully handle realloc() failure | David Robillard | 1 | -4/+4 | |
2022-08-17 | Move REALTIME definition to jack.c | David Robillard | 2 | -6/+6 | |
2022-08-17 | Reduce dependence on jalv_internal.h | David Robillard | 12 | -16/+37 | |
2022-08-17 | Move JalvWorker definition to worker.h | David Robillard | 2 | -16/+34 | |
2022-08-17 | Remove Jalv back pointer from Worker | David Robillard | 4 | -20/+23 | |
2022-08-17 | Move Port definition to its own header | David Robillard | 10 | -17/+47 | |
2022-08-17 | Separate options.h from jalv_internal.h | David Robillard | 9 | -20/+45 | |
2022-08-17 | Move control-related type definitions to control.h | David Robillard | 6 | -55/+59 | |
2022-08-17 | Move JalvURIDs and JalvNodes to their own headers | David Robillard | 10 | -74/+120 | |
2022-08-17 | Remove Jalv back pointer from ControlID | David Robillard | 5 | -91/+127 | |
Bit of a kludge, but this unblocks further cleanup and modularization. The Gtk static data / signal issues can be addressed later. |