Go to the source code of this file.
|
| #define | nrf_dsp_clip(input, min, max) |
| | Macro for clipping variable to the limit (min, max).
|
| |
|
| void | nrf_dsp_clip_f32 (flt32_t *p_input, uint16_t num, const flt32_t min, const flt32_t max) |
| | Clips floating-point values to the limit (min, max)
|
| |
| void | nrf_dsp_clip_i8 (int8_t *p_input, uint16_t num, const int8_t min, const int8_t max) |
| | Clips INT8 values to the limit (min, max)
|
| |
| void | nrf_dsp_clip_i16 (int16_t *p_input, uint16_t num, const int16_t min, const int16_t max) |
| | Clips INT16 values to the limit (min, max)
|
| |