OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:opus_pcm_soft_clip
(Results
1 - 4
of
4
) sorted by null
/external/libopus/tests/
test_opus_decode.c
382
fprintf(stdout," Testing
opus_pcm_soft_clip
... ");
389
opus_pcm_soft_clip
(&x[i],1024-i,1,s);
402
opus_pcm_soft_clip
(x,1024/i,i,s);
409
opus_pcm_soft_clip
(x,0,1,s);
410
opus_pcm_soft_clip
(x,1,0,s);
411
opus_pcm_soft_clip
(x,1,1,0);
412
opus_pcm_soft_clip
(x,1,-1,s);
413
opus_pcm_soft_clip
(x,-1,1,s);
414
opus_pcm_soft_clip
(0,1,1,s);
/external/libopus/include/
opus.h
606
OPUS_EXPORT void
opus_pcm_soft_clip
(float *pcm, int frame_size, int channels, float *softclip_mem);
[
all
...]
/external/libopus/src/
opus.c
36
OPUS_EXPORT void
opus_pcm_soft_clip
(float *_x, int N, int C, float *declip_mem)
function
opus_decoder.c
690
opus_pcm_soft_clip
(pcm, nb_samples, st->channels, st->softclip_mem);
Completed in 129 milliseconds