HomeSort by relevance Sort by last modified time
    Searched refs:opus_alloc (Results 1 - 17 of 17) sorted by null

  /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 */
modes.c 99 eBands = opus_alloc(sizeof(opus_int16)*(*nbEBands+1));
117 eBands = opus_alloc(sizeof(opus_int16)*(*nbEBands+2));
174 allocVectors = opus_alloc(sizeof(unsigned char)*(BITALLOC_SIZE*mode->nbEBands));
308 mode = opus_alloc(sizeof(CELTMode));
370 window = (opus_val16*)opus_alloc(mode->overlap*sizeof(opus_val16));
383 logN = (opus_int16*)opus_alloc(mode->nbEBands*sizeof(opus_int16));
kiss_fft.h 46 #define KISS_FFT_MALLOC opus_alloc
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 82 l->trig = trig = (kiss_twiddle_scalar*)opus_alloc((N-(N2>>maxshift))*sizeof(kiss_twiddle_scalar));
celt_decoder.c 163 CELTDecoder *st = (CELTDecoder *)opus_alloc(opus_custom_decoder_get_size(mode, channels));
    [all...]
celt_encoder.c 152 CELTEncoder *st = (CELTEncoder *)opus_alloc(opus_custom_encoder_get_size(mode, channels));
    [all...]
  /external/libopus/tests/
test_opus_projection.c 104 input_val16 = (opus_val16 *)opus_alloc(sizeof(opus_val16) * SIMPLE_MATRIX_INPUT_SIZE);
105 output_int16 = (opus_int16 *)opus_alloc(sizeof(opus_int16) * SIMPLE_MATRIX_OUTPUT_SIZE);
106 output_val16 = (opus_val16 *)opus_alloc(sizeof(opus_val16) * SIMPLE_MATRIX_OUTPUT_SIZE);
114 simple_matrix = (MappingMatrix *)opus_alloc(simple_matrix_size);
220 matrix = (unsigned char *)opus_alloc(matrix_size);
332 matrix = (unsigned char *)opus_alloc(matrix_size);
test_opus_api.c     [all...]
  /external/libopus/celt/arm/
celt_fft_ne10.c 74 st->arch_fft = (arch_fft_state *)opus_alloc(memneeded);
  /external/libopus/src/
opus_projection_decoder.c 191 st = (OpusProjectionDecoder *)opus_alloc(size);
opus_projection_encoder.c 323 st = (OpusProjectionEncoder *)opus_alloc(size);
repacketizer.c 51 rp=(OpusRepacketizer *)opus_alloc(opus_repacketizer_get_size());
opus_multistream_decoder.c 131 st = (OpusMSDecoder *)opus_alloc(opus_multistream_decoder_get_size(streams, coupled_streams));
opus_multistream_encoder.c 604 st = (OpusMSEncoder *)opus_alloc(opus_multistream_encoder_get_size(streams, coupled_streams));
649 st = (OpusMSEncoder *)opus_alloc(size);
    [all...]
opus_decoder.c 170 st = (OpusDecoder *)opus_alloc(opus_decoder_get_size(channels));
opus_encoder.c 528 st = (OpusEncoder *)opus_alloc(opus_encoder_get_size(channels));
    [all...]

Completed in 363 milliseconds