生成代码包

This commit is contained in:
2026-09-09 10:29:41 +08:00
commit 900c5339e2
905 changed files with 216635 additions and 0 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