Home
last modified time | relevance | path

Searched refs:opus_decoder_get_size (Results 1 – 6 of 6) sorted by relevance

/external/libopus/src/
Dopus_multistream_decoder.c56 coupled_size = opus_decoder_get_size(2); in opus_multistream_decoder_get_size()
57 mono_size = opus_decoder_get_size(1); in opus_multistream_decoder_get_size()
91 coupled_size = opus_decoder_get_size(2); in opus_multistream_decoder_init()
92 mono_size = opus_decoder_get_size(1); in opus_multistream_decoder_init()
209 coupled_size = opus_decoder_get_size(2); in opus_multistream_decode_native()
210 mono_size = opus_decoder_get_size(1); in opus_multistream_decode_native()
420 coupled_size = opus_decoder_get_size(2); in opus_multistream_decoder_ctl()
421 mono_size = opus_decoder_get_size(1); in opus_multistream_decoder_ctl()
Dopus_decoder.c82 int opus_decoder_get_size(int channels) in opus_decoder_get_size() function
106 OPUS_CLEAR((char*)st, opus_decoder_get_size(channels)); in opus_decoder_init()
150 st = (OpusDecoder *)opus_alloc(opus_decoder_get_size(channels)); in opus_decoder_create()
/external/libopus/tests/
Dtest_opus_decode.c88 dec2=(OpusDecoder *)malloc(opus_decoder_get_size(c)); in test_decoder_code0()
90 memcpy(dec2,dec[t],opus_decoder_get_size(c)); in test_decoder_code0()
91 memset(dec[t],255,opus_decoder_get_size(c)); in test_decoder_code0()
98 decsize=opus_decoder_get_size(1); in test_decoder_code0()
Dtest_opus_api.c104 i=opus_decoder_get_size(c); in test_dec_api()
132 dec=malloc(opus_decoder_get_size(2)); in test_dec_api()
144 VG_CHECK(dec,opus_decoder_get_size(2)); in test_dec_api()
239 dec2=malloc(opus_decoder_get_size(2)); in test_dec_api()
240 memcpy(dec2,dec,opus_decoder_get_size(2)); in test_dec_api()
242 if(memcmp(dec2,dec,opus_decoder_get_size(2))==0)test_failed(); in test_dec_api()
561 VG_CHECK(streamdec,opus_decoder_get_size(1)); in test_msdec_api()
568 VG_CHECK(streamdec,opus_decoder_get_size(1)); in test_msdec_api()
Dtest_opus_encode.c350 dec_err[0]=(OpusDecoder *)malloc(opus_decoder_get_size(2)); in run_test1()
351 memcpy(dec_err[0],dec,opus_decoder_get_size(2)); in run_test1()
/external/libopus/include/
Dopus.h406 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_decoder_get_size(int channels);