fix heading level of some doc in bw_{chorus,comb,delay}

This commit is contained in:
Stefano D'Angelo 2023-04-21 06:07:50 +02:00
parent 847f99264f
commit 85488e76a8
3 changed files with 6 additions and 6 deletions

View File

@ -79,14 +79,14 @@ static inline void bw_chorus_set_sample_rate(bw_chorus_coeffs *BW_RESTRICT coeff
/*! <<<```
* Sets the `sample_rate` (Hz) value in `coeffs`.
*
* ### bw_chorus_mem_req()
* #### bw_chorus_mem_req()
* ```>>> */
static inline BW_SIZE_T bw_chorus_mem_req(bw_chorus_coeffs *BW_RESTRICT coeffs);
/*! <<<```
* Returns the size, in bytes, of contiguous memory to be supplied to
* `bw_chorus_mem_set()` using `coeffs`.
*
* ### bw_chorus_mem_set()
* #### bw_chorus_mem_set()
* ```>>> */
static inline void bw_chorus_mem_set(bw_chorus_state *BW_RESTRICT state, void *mem);
/*! <<<```

View File

@ -80,14 +80,14 @@ static inline void bw_comb_set_sample_rate(bw_comb_coeffs *BW_RESTRICT coeffs, f
/*! <<<```
* Sets the `sample_rate` (Hz) value in `coeffs`.
*
* ### bw_comb_mem_req()
* #### bw_comb_mem_req()
* ```>>> */
static inline BW_SIZE_T bw_comb_mem_req(bw_comb_coeffs *BW_RESTRICT coeffs);
/*! <<<```
* Returns the size, in bytes, of contiguous memory to be supplied to
* `bw_comb_mem_set()` using `coeffs`.
*
* ### bw_comb_mem_set()
* #### bw_comb_mem_set()
* ```>>> */
static inline void bw_comb_mem_set(bw_comb_state *BW_RESTRICT state, void *mem);
/*! <<<```

View File

@ -75,14 +75,14 @@ static inline void bw_delay_set_sample_rate(bw_delay_coeffs *BW_RESTRICT coeffs,
/*! <<<```
* Sets the `sample_rate` (Hz) value in `coeffs`.
*
* ### bw_delay_mem_req()
* #### bw_delay_mem_req()
* ```>>> */
static inline BW_SIZE_T bw_delay_mem_req(bw_delay_coeffs *BW_RESTRICT coeffs);
/*! <<<```
* Returns the size, in bytes, of contiguous memory to be supplied to
* `bw_delay_mem_set()` using `coeffs`.
*
* ### bw_delay_mem_set()
* #### bw_delay_mem_set()
* ```>>> */
static inline void bw_delay_mem_set(bw_delay_state *BW_RESTRICT state, void *mem);
/*! <<<```