audio_noise_gate.h 319 B

1234567891011
  1. #ifndef _AUDIO_LIMITER_NOISE_GATE_H_
  2. #define _AUDIO_LIMITER_NOISE_GATE_H_
  3. #include "generic/typedef.h"
  4. int audio_noise_gate_open(u16 sample_rate, int limiter_thr, int noise_gate, int noise_gain);
  5. void audio_noise_gate_run(void *in, void *out, u16 len);
  6. void audio_noise_gate_close();
  7. #endif/*_AUDIO_NOISE_GATE_H_*/