search for: out_opt

Displaying 1 result from an estimated 1 matches for "out_opt".

Did you mean: put_opt
2016 Jul 28
0
[PATCH] Optimize silk_LPC_analysis_filter() for ARM NEON
...ifdef HAVE_CONFIG_H +# include "config.h" +#endif + +#include <stdio.h> +#include <string.h> + +#include "modes.h" +#include "SigProc_FIX.h" + +#define MAX_ORDER 32 + +static int test_silk_LPC_analysis_filter(int arch) +{ + opus_int16 out_org[MAX_PERIOD], out_opt[MAX_PERIOD]; /* O Output signal */ + opus_int16 in[MAX_PERIOD + MAX_ORDER]; /* I Input signal */ + opus_int16 B[MAX_ORDER]; /* I MA prediction coeffici...