OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:typeSample
(Results
1 - 5
of
5
) sorted by null
/external/srec/audio/AudioIn/UNIX/include/
filter.h
25
typedef short
typeSample
; // for input and output samples
37
typeSample
*z; // pointer to delay line
52
extern void FIR_downsample(unsigned int nInput,
typeSample
*pInput,
53
typeSample
*pOutput, FIR_struct *pFIR);
/external/srec/audio/AudioIn/UNIX/src/
filter.c
92
pFIR->z = calloc(nTaps * sizeof(
typeSample
), 1);
156
memset(pFIR->z, pFIR->nTaps, sizeof(
typeSample
));
160
* FIR_type FIR_downsample(unsigned int nInput,
typeSample
*pInput,
161
*
typeSample
*pOutput, FIR_struct *pFIR)
228
void FIR_downsample(unsigned int nInput,
typeSample
*pInput,
229
typeSample
*pOutput, FIR_struct *pFIR)
233
typeSample
*pz; // pointer to delay line
234
typeSample
*pz_beg; // pointer to beginning of delay line
235
typeSample
*pz_end; // pointer to last slot in delay line
288
*pOutput = (
typeSample
) (accum >> pFIR->scale)
[
all
...]
/external/srec/audio/test/AudioHardwareRecord/src/
AudioHardwareRecord.c
39
typedef short
typeSample
;
42
typeSample
recordedSamples[N_SAMPLES_TO_RECORD];
50
memset(recordedSamples, 0, N_SAMPLES_TO_RECORD * sizeof(
typeSample
));
94
fwrite(recordedSamples, sizeof(
typeSample
), i, fpOutput);
/external/srec/audio/test/AudioHardwareRecordLoop/src/
AudioHardwareRecordLoop.c
42
typedef short
typeSample
;
45
typeSample
recordedSamples[N_SAMPLES_TO_RECORD];
91
memset(recordedSamples, 0, N_SAMPLES_TO_RECORD * sizeof(
typeSample
));
131
fwrite(recordedSamples, sizeof(
typeSample
), i, fpOutput);
/external/srec/audio/test/AudioInRecord/src/
AudioInRecord.c
44
typedef short
typeSample
;
47
typeSample
recordedSamples[N_SAMPLES_TO_RECORD];
59
memset(recordedSamples, 0, N_SAMPLES_TO_RECORD * sizeof(
typeSample
));
139
fwrite(recordedSamples, sizeof(
typeSample
), nSamples, fpOutput);
Completed in 49 milliseconds