Brickworks > API documentation
Brickworks is a music DSP toolkit that offers a solid foundation for creating and enhancing audio engines on any platform.
This documentation contains technical information on using the Brickworks API. You can find background information on what Brickworks actually is on its official web page.
Brickworks is written in plain C99 and only requires:
NULL
, INFINITY
, and (U)INT{8,16,32,64}_{MIN/MAX}
;size_t
and (u)int{8,16,32,64}_t
types;float
type.The API user is given some flexibility in supplying such definitions (see bw_config and bw_common).
The code is organized in separate modules which are as independent as possible but still may require (i.e., depend on) other modules. Each module consists of an header file having filename module.h
.
Brickworks is not meant to be built and used as a static or shared library. You should rather just use the needed module files to develop your software (more below).
Both individual modules and the whole library are versioned according to the Semantic Versioning Specification 2.0.0. It follows that the library version will be equal to the version of the last modified module, while modules that were not modified will be tagged with a previous version number. Module dependencies are considered part of the API, therefore if a dependency is removed that would lead to MINOR version change, and if one is added that would cause a MAJOR version change.
Unless otherwise stated, the C API follows the following conventions:
NULL
;Conventions for C++ wrappers will be added when they are released.
To be written, topics:
These modules are required by most, if not all, other modules and just contain a few basic essential definitions. They provide a certain degree of consistency and adaptability to the rest of the code.
You can also directly use them to create your own modules, if you want.
Utility modules contain heterogeneous code that is repeatedly used by applications and other modules.
These modules implement signal processing blocks (not necessarily audio-related).
Their APIs are not 100% uniform, but they tend to follow a common pattern described here.
Each signal processing block conceptually consists of:
Signal inputs and outputs are not explicitly represented by any data structure, but you rather see them as arguments or return values of processing functions. Signal data is PCM-encoded as (buffers of) 32-bit floating point numbers, with values typically between -1.f
and 1.f
(these correspond to the 0 dBFS clipping points — lying within this range is not a strict requirement), and uniformly-sampled at a user-supplied sample rate, which is common to all signal inputs and outputs of a block instance. Signals that vary at such sample rate are also known as audio rate signals.
Parameters, on the other hand, can have different types and ranges and are asynchronously updated at a variable rate, also known as control rate, that is lower than the sample rate. You can set input parameter values and get output parameter values using specific functions. As long as input parameter values are valid and set properly, you can expect to freely change them without incurring in glitches or other artifacts.
Coefficients are calculated and kept up to date by various functions at control and/or audio rate on the basis of input parameter values. As an API user you don't directly interact with them. They are stored together with input parameter values and output parameter values that do not depend on state into a common data structure which can be either specific to one block instance or shared by more instances (in which case those instances act like they have all the same parameter settings). In the former case you can use buffer-based processing functions, which also take care of updating coefficients, otherwise you are forced to use sample-based processing functions and explicitly trigger control-rate and audio-rate coefficient updates.
As coefficients and output parameter values may be subject to smoothing or other dynamic updating patterns, their values may evolve over time even if input parameter values are constant from a certain moment on. However, they are required to converge towards fixed values given constant input parameter values and sample rate. This can be exploited by the API user to, e.g., completely avoid triggering updates when input parameter values are constant from the start, by invoking functions that force coefficients to assume their target values.
Each block instance is also uniquely characterized by a data structure containing its internal state and output parameter values that depend on state, whose contents are not normally accessible to API users. Such internal state and output parameter values are updated at audio rate by processing functions and can be reset by the API user to a set of initial values, which can depend on input parameter values, coefficient values, and sample rate, via specific functions.
Some modules require the API user to provide a chunk of contiguous memory to be used as part of the internal state of an instance. This arrangement avoids the need to directly rely on dynamic memory allocation and puts the burdens and the honours of managing memory in the hands of the API user. The size of the required memory chunk is typically dependent on the sample rate and eventual initialization-time variables. Functions are provided to retrieve the required memory chunk size and to associate a memory chunk to a given instance.
In each module you may find:
struct
containing parameters and coefficients, typedef
ed as bw_module_coeffs
;struct
containing the internal state, typedef
ed as bw_module_state
;bw_module_init()
, which:bw_module_set_sample_rate()
, which:bw_module_init()
;bw_module_mem_req()
, which:bw_module_mem_set()
;bw_module_reset_coeffs()
, which:bw_module_set_sample_rate()
;bw_module_reset_state()
, which:bw_module_update_coeffs_ctrl()
, which:bw_module_update_coeffs_audio()
, which:bw_module_update_state_ctrl()
, which:bw_module_process1*()
, which:bw_module_process()
, which:bw_module_set_parameter()
;bw_module_get_parameter()
, which:Before bw_module_init()
is called all parameters, coefficients, and states are considered invalid.
Any varations to the pattern above are indicated in the individual module's documentation.
Definitions in this glossary are not meant to be general but only valid in the context of using the Brickworks API.