chore: Remove tracked build artifacts

This commit is contained in:
lmx
2025-11-28 16:24:27 +08:00
parent 892ed9267b
commit 818e8c3778
2356 changed files with 0 additions and 587882 deletions

View File

@ -1,23 +0,0 @@
#ifndef PEMAFROW_API_H
#define PEMAFROW_API_H
#include "media/audio_stream.h"
#define PEMAFROW_RUN_POINT_NUM 128 //每次run固定点数
int getPemafrowBuf();
void pemafrowInit(void *workBuf);
//int pemafrowRun(void *workBuf, short *in, short *out, int len);
int pemafrowRun(void *workBuf, short *in, short *preOut, short *out);
typedef struct _PEMAFROW_API_STRUCT_ {
void *ptr; //运算buf指针
s16 pre_data[PEMAFROW_RUN_POINT_NUM];
s16 data_buf[PEMAFROW_RUN_POINT_NUM];
struct audio_stream_entry entry; // 音频流入口
int out_len;
int process_len;
u16 data_len;
u8 run_en;
} PEMAFROW_API_STRUCT;
#endif