feat: 添加杰理 JL7016 SOC 代码生成模板

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-19 16:05:36 +08:00
co-authored by Cursor
parent 0eda925f58
commit 16bffd16b2
914 changed files with 254709 additions and 45 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef _AUDIO_LIMITER_NOISE_GATE_H_
#define _AUDIO_LIMITER_NOISE_GATE_H_
#include "generic/typedef.h"
int audio_noise_gate_open(u16 sample_rate, int limiter_thr, int noise_gate, int noise_gain);
void audio_noise_gate_run(void *in, void *out, u16 len);
void audio_noise_gate_close();
#endif/*_AUDIO_NOISE_GATE_H_*/