/* * 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_one_pole bw_math }}} * description {{{ * Pulse oscillator waveshaper with variable pulse width (actually, duty * cycle) and PolyBLEP antialiasing. * }}} * changelog {{{ * * }}} */ #ifndef _BW_OSC_PULSE_H #define _BW_OSC_PULSE_H #ifdef __cplusplus extern "C" { #endif /*! api {{{ * #### bw_osc_pulse * ```>>> */ typedef struct _bw_osc_pulse bw_osc_pulse; /*! <<<``` * Instance object. * >>> */ /*! ... * #### bw_osc_pulse_init() * ```>>> */ void bw_osc_pulse_init(bw_osc_pulse *instance); /*! <<<``` * Initializes the `instance` object. * >>> */ /*! ... * #### bw_osc_pulse_set_sample_rate() * ```>>> */ void bw_osc_pulse_set_sample_rate(bw_osc_pulse *instance, float sample_rate); /*! <<<``` * Sets the `sample_rate` (Hz) value for the given `instance`. * >>> */ /*! ... * #### bw_osc_pulse_reset() * ```>>> */ void bw_osc_pulse_reset(bw_osc_pulse *instance); /*! <<<``` * Resets the given `instance` to its initial state. * >>> */ /*! ... * #### bw_osc_pulse_process() * ```>>> */ void bw_osc_pulse_process(bw_osc_pulse *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`. * * If antialiasing is on, `x_phase_inc` must contain phase increment values, * otherwise it is ignored and can be `NULL`. * >>> */ /*! ... * #### bw_osc_pulse_set_antialiasing() * ```>>> */ void bw_osc_pulse_set_antialiasing(bw_osc_pulse *instance, char value); /*! <<<``` * Sets whether the antialiasing is on (`value` non-`0`) or off (`0`) for the * given `instance`. * * Default value: `0`. * >>> */ /*! ... * #### bw_osc_pulse_set_pulse_width() * ```>>> */ void bw_osc_pulse_set_pulse_width(bw_osc_pulse *instance, float value); /*! <<<``` * Sets the pulse width (actually, the duty cycle) to `value` (range * [`0.f`, `1.f`]) for the given `instance`. * * Default value: `0.5f`. * }}} */ /* 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_pulse { // Coefficients float smooth_mA1; // Parameters char first_run; char antialiasing; float pulse_width; // State float pw_z1; }; #ifdef __cplusplus } #endif #endif