如题,比如dsplib中
void DSP_fir_gen_cn (
const short *restrict x, /* Input array [nr+nh-1 elements] */
const short *restrict h, /* Coeff array [nh elements] */
short *restrict r, /* Output array [nr elements] */
int nh, /* Number of coefficients */
int nr /* Number of output samples */
);
x和h中间会填32 bytes数据,这些数据是怎么得到的呢? |