aboutsummaryrefslogtreecommitdiffstats
path: root/src/jalv.h
AgeCommit message (Collapse)AuthorFilesLines
2024-11-24Cleanly separate audio thread from the rest of the applicationDavid Robillard1-44/+28
2024-11-24Move process thread setup code to a separate fileDavid Robillard1-8/+0
Towards more cleanly separating the audio thread code from the rest of the application.
2024-11-24Factor out "settings" that affect the execution processDavid Robillard1-19/+16
2024-11-24Simplify port buffer allocationDavid Robillard1-1/+4
2024-11-24Rename jalv_internal.h to jalv.hDavid Robillard1-0/+142
The "internal" name never made much sense to begin with (since this is a program, not a library), but now this header only describes the "main" Jalv struct and functions directly associated with it (the top-level interface of the application), so name it accordingly. This also makes include-what-you-use actually check this header, which it wasn't before for some mysterious reason.