/device/google/dragon/audio/hal/dsp/tests/ |
drc_test.c | 11 #include "drc.h" 26 static void process(struct drc *drc, float *buf, size_t frames) 37 drc_process(drc, data, chunk); 41 printf("drc processing takes %g seconds for %zu samples\n", 48 struct drc *drc; local 59 drc = drc_new(44100); 61 drc->emphasis_disabled = 0; 62 drc_set_param(drc, 0, PARAM_CROSSOVER_LOWER_FREQ, 0) [all...] |
/device/google/dragon/audio/hal/dsp/ |
drc.h | 22 /* DRC implements a flexible audio dynamics compression effect such as is 27 * This is a three band stereo DRC. There are three compressor kernels, and each 44 * | drc | | drc | | drc | 61 /* The parameters of the DRC compressor. 109 struct drc { struct 136 /* DRC needs the parameters to be set before initialization. So drc_new() should 153 /* Allocates a DRC. */ 154 struct drc *drc_new(float sample_rate) [all...] |
drc.c | 14 #include "drc.h" 17 static void set_default_parameters(struct drc *drc); 18 static void init_data_buffer(struct drc *drc); 19 static void init_emphasis_eq(struct drc *drc); 20 static void init_crossover(struct drc *drc); 21 static void init_kernel(struct drc *drc) 28 struct drc *drc = (struct drc *)calloc(1, sizeof(struct drc)); local [all...] |
/device/google/dragon/audio/hal/ |
cras_dsp_mod_builtin.c | 8 #include "drc.h" 301 * drc module functions 305 struct drc *drc; /* Initialized in the first call of drc_run() */ member in struct:drc_data 338 if (!data->drc) { 341 struct drc *drc = drc_new(data->sample_rate); local 343 data->drc = drc; 344 drc->emphasis_disabled = (int) *data->ports[4] [all...] |
/external/curl/lib/ |
multi.c | 1335 CURLcode drc; local [all...] |
/frameworks/av/media/libstagefright/ |
ACodec.cpp | 2129 drcParams_t drc; local [all...] |