Home
last modified time | relevance | path

Searched refs:opus_pcm_soft_clip (Results 1 – 4 of 4) sorted by relevance

/external/libopus/tests/
Dtest_opus_decode.c389 opus_pcm_soft_clip(&x[i],1024-i,1,s); in test_soft_clip()
402 opus_pcm_soft_clip(x,1024/i,i,s); in test_soft_clip()
409 opus_pcm_soft_clip(x,0,1,s); in test_soft_clip()
410 opus_pcm_soft_clip(x,1,0,s); in test_soft_clip()
411 opus_pcm_soft_clip(x,1,1,0); in test_soft_clip()
412 opus_pcm_soft_clip(x,1,-1,s); in test_soft_clip()
413 opus_pcm_soft_clip(x,-1,1,s); in test_soft_clip()
414 opus_pcm_soft_clip(0,1,1,s); in test_soft_clip()
/external/libopus/include/
Dopus.h606 OPUS_EXPORT void opus_pcm_soft_clip(float *pcm, int frame_size, int channels, float *softclip_mem);
/external/libopus/src/
Dopus.c36 OPUS_EXPORT void opus_pcm_soft_clip(float *_x, int N, int C, float *declip_mem) in opus_pcm_soft_clip() function
Dopus_decoder.c704 opus_pcm_soft_clip(pcm, nb_samples, st->channels, st->softclip_mem); in opus_decode_native()