#include "dsp_types.h"
#include "target_optim.h"
#include "dsp_vectors.h"
#include "dsp_filters.h"
#include "dsp_operators.h"
#include "dsp_signal_generation.h"
#include "dsp_transforms.h"
#include "dsp_windowing.h"
#include "dsp_adpcm.h"
#include "dsp_resampling.h"
Macros | |
Algorithm's optimization options | |
| |
#define | DSP_OPTI_SPEED 0 |
To accelerate the algorithms. More... | |
#define | DSP_OPTI_ACCURACY 1 |
To be the more accurate as the algorithm can be. More... | |
#define | DSP_OPTI_SIZE 2 |
To minimize the size of the data needed to compute the algorithms. More... | |
#define | DSP_OPTI_ACC_AND_SIZE (DSP_OPTI_ACCURACY | DSP_OPTI_SIZE) |
To be the more accurate and smallest as the algorithm can be. More... | |