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.c59 coupled_size = opus_decoder_get_size(2); in opus_multistream_decoder_get_size()
60 mono_size = opus_decoder_get_size(1); in opus_multistream_decoder_get_size()
94 coupled_size = opus_decoder_get_size(2); in opus_multistream_decoder_init()
95 mono_size = opus_decoder_get_size(1); in opus_multistream_decoder_init()
210 coupled_size = opus_decoder_get_size(2); in opus_multistream_decode_native()
211 mono_size = opus_decoder_get_size(1); in opus_multistream_decode_native()
423 coupled_size = opus_decoder_get_size(2); in opus_multistream_decoder_ctl_va_list()
424 mono_size = opus_decoder_get_size(1); in opus_multistream_decoder_ctl_va_list()
Dopus_decoder.c102 int opus_decoder_get_size(int channels) in opus_decoder_get_size() function
126 OPUS_CLEAR((char*)st, opus_decoder_get_size(channels)); in opus_decoder_init()
170 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.c105 i=opus_decoder_get_size(c); in test_dec_api()
133 dec=malloc(opus_decoder_get_size(2)); in test_dec_api()
145 VG_CHECK(dec,opus_decoder_get_size(2)); in test_dec_api()
240 dec2=malloc(opus_decoder_get_size(2)); in test_dec_api()
241 memcpy(dec2,dec,opus_decoder_get_size(2)); in test_dec_api()
243 if(memcmp(dec2,dec,opus_decoder_get_size(2))==0)test_failed(); in test_dec_api()
557 VG_CHECK(streamdec,opus_decoder_get_size(1)); in test_msdec_api()
564 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);