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
+17
View File
@@ -0,0 +1,17 @@
/*****************************************************************
>file name : a2dp_sample_detect.h
>create time : Mon 23 Jul 2021 11:26:34 AM CST
*****************************************************************/
#ifndef _A2DP_SAMPLE_DETECT_H_
#define _A2DP_SAMPLE_DETECT_H_
#include "typedef.h"
#include "audio_base.h"
void *a2dp_sample_detect_open(int sample_rate, u32 coding_type);
int a2dp_frame_sample_detect_start(void *hdl, u32 time);
int a2dp_frame_sample_detect(void *hdl, void *data, int len, u32 time);
void a2dp_sample_detect_close(void *hdl);
#endif