/external/chromium_org/third_party/opus/src/celt/ |
os_support.h | 47 static OPUS_INLINE void *opus_alloc (size_t size) function 58 return opus_alloc(size); 62 /** Opus wrapper for free(). To do your own dynamic allocation, all you need to do is replace this function and opus_alloc */
|
kiss_fft.h | 45 #define KISS_FFT_MALLOC opus_alloc
|
modes.c | 98 eBands = opus_alloc(sizeof(opus_int16)*(*nbEBands+1)); 116 eBands = opus_alloc(sizeof(opus_int16)*(*nbEBands+2)); 173 allocVectors = opus_alloc(sizeof(unsigned char)*(BITALLOC_SIZE*mode->nbEBands)); 306 mode = opus_alloc(sizeof(CELTMode)); 368 window = (opus_val16*)opus_alloc(mode->overlap*sizeof(opus_val16)); 381 logN = (opus_int16*)opus_alloc(mode->nbEBands*sizeof(opus_int16));
|
rate.c | 87 cindex = (opus_int16 *)opus_alloc(sizeof(cache->index[0])*m->nbEBands*(LM+2)); 127 bits = (unsigned char *)opus_alloc(sizeof(unsigned char)*curr); 143 cache->caps = cap = (unsigned char *)opus_alloc(sizeof(cache->caps[0])*(LM+1)*2*m->nbEBands);
|
mdct.c | 80 l->trig = trig = (kiss_twiddle_scalar*)opus_alloc((N4+1)*sizeof(kiss_twiddle_scalar));
|
celt_decoder.c | 118 CELTDecoder *st = (CELTDecoder *)opus_alloc(opus_custom_decoder_get_size(mode, channels)); [all...] |
celt_encoder.c | 150 CELTEncoder *st = (CELTEncoder *)opus_alloc(opus_custom_encoder_get_size(mode, channels)); [all...] |
/external/libopus/celt/ |
os_support.h | 47 static OPUS_INLINE void *opus_alloc (size_t size) function 58 return opus_alloc(size); 62 /** Opus wrapper for free(). To do your own dynamic allocation, all you need to do is replace this function and opus_alloc */
|
kiss_fft.h | 45 #define KISS_FFT_MALLOC opus_alloc
|
modes.c | 98 eBands = opus_alloc(sizeof(opus_int16)*(*nbEBands+1)); 116 eBands = opus_alloc(sizeof(opus_int16)*(*nbEBands+2)); 173 allocVectors = opus_alloc(sizeof(unsigned char)*(BITALLOC_SIZE*mode->nbEBands)); 306 mode = opus_alloc(sizeof(CELTMode)); 368 window = (opus_val16*)opus_alloc(mode->overlap*sizeof(opus_val16)); 381 logN = (opus_int16*)opus_alloc(mode->nbEBands*sizeof(opus_int16));
|
rate.c | 87 cindex = (opus_int16 *)opus_alloc(sizeof(cache->index[0])*m->nbEBands*(LM+2)); 127 bits = (unsigned char *)opus_alloc(sizeof(unsigned char)*curr); 143 cache->caps = cap = (unsigned char *)opus_alloc(sizeof(cache->caps[0])*(LM+1)*2*m->nbEBands);
|
mdct.c | 80 l->trig = trig = (kiss_twiddle_scalar*)opus_alloc((N4+1)*sizeof(kiss_twiddle_scalar));
|
celt_decoder.c | 118 CELTDecoder *st = (CELTDecoder *)opus_alloc(opus_custom_decoder_get_size(mode, channels)); [all...] |
celt_encoder.c | 150 CELTEncoder *st = (CELTEncoder *)opus_alloc(opus_custom_encoder_get_size(mode, channels)); [all...] |
/external/chromium_org/third_party/opus/src/src/ |
repacketizer.c | 51 rp=(OpusRepacketizer *)opus_alloc(opus_repacketizer_get_size());
|
opus_multistream_decoder.c | 128 st = (OpusMSDecoder *)opus_alloc(opus_multistream_decoder_get_size(streams, coupled_streams));
|
opus_multistream_encoder.c | 539 st = (OpusMSEncoder *)opus_alloc(opus_multistream_encoder_get_size(streams, coupled_streams)); 576 st = (OpusMSEncoder *)opus_alloc(opus_multistream_surround_encoder_get_size(channels, mapping_family)); [all...] |
opus_decoder.c | 154 st = (OpusDecoder *)opus_alloc(opus_decoder_get_size(channels));
|
opus_encoder.c | 488 st = (OpusEncoder *)opus_alloc(opus_encoder_get_size(channels)); [all...] |
/external/libopus/src/ |
repacketizer.c | 51 rp=(OpusRepacketizer *)opus_alloc(opus_repacketizer_get_size());
|
opus_multistream_decoder.c | 128 st = (OpusMSDecoder *)opus_alloc(opus_multistream_decoder_get_size(streams, coupled_streams));
|
opus_multistream_encoder.c | 539 st = (OpusMSEncoder *)opus_alloc(opus_multistream_encoder_get_size(streams, coupled_streams)); 576 st = (OpusMSEncoder *)opus_alloc(opus_multistream_surround_encoder_get_size(channels, mapping_family)); [all...] |
opus_decoder.c | 154 st = (OpusDecoder *)opus_alloc(opus_decoder_get_size(channels));
|
opus_encoder.c | 488 st = (OpusEncoder *)opus_alloc(opus_encoder_get_size(channels)); [all...] |
/external/chromium_org/third_party/opus/src/tests/ |
test_opus_api.c | [all...] |