You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
371 B

#ifndef DSPUTIL_H
#define DSPUTIL_H
/************************************************************************/
/* 定义 dsp 优化限幅运算使用的查找表及其初始化函数。 */
/************************************************************************/
#define MAX_NEG_CROP 1024
extern uint8_t cropTbl[256+2 * MAX_NEG_CROP];
void dsputil_static_init(void);
#endif