/* * Brickworks * * Copyright (C) 2022 Orastron Srl unipersonale * * Brickworks is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3 of the License. * * Brickworks is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * * File author: Stefano D'Angelo */ /*! * module_type {{{ dsp }}} * version {{{ 0.2.0 }}} * requires {{{ bw_config bw_common bw_math }}} * description {{{ * Sawtooth oscillator waveshaper with PolyBLEP antialiasing. * }}} * changelog {{{ * * }}} */ #ifndef _BW_OSC_SAW_H #define _BW_OSC_SAW_H #ifdef __cplusplus extern "C" { #endif /*! api {{{ * #### bw_osc_saw * ```>>> */ typedef struct _bw_osc_saw bw_osc_saw; /*! <<<``` * Instance object. * >>> */ /*! ... * #### bw_osc_saw_init() * ```>>> */ void bw_osc_saw_init(bw_osc_saw *instance); /*! <<<``` * Initializes the `instance` object. * >>> */ /*! ... * #### bw_osc_saw_set_sample_rate() and bw_osc_saw_reset() * * These do not exist (not needed). * >>> */ /*! ... * #### bw_osc_saw_process() * ```>>> */ void bw_osc_saw_process(bw_osc_saw *instance, const float *x, const float *x_phase_inc, float* y, int n_samples); /*! <<<``` * Lets the given `instance` process `n_samples` samples from the input * buffer `x` containing the normalized phase signal and fills the * corresponding `n_samples` samples in the output buffer `y`. * >>> */ /*! ... * #### bw_osc_saw_set_antialiasing() * ```>>> */ void bw_osc_saw_set_antialiasing(bw_osc_saw *instance, char value); /*! <<<``` * Sets whether the antialiasing is on (`value` non-`0`) or off (`0`) for the * given `instance`. * * Default value: `0`. * }}} */ /* WARNING: the internal definition of this struct is not part of the public * API. Its content may change at any time in future versions. Please, do not * access its members directly. */ struct _bw_osc_saw { // Parameters char antialiasing; }; #ifdef __cplusplus } #endif #endif