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

  /external/libopus/src/
opus_multistream_decoder.c 56 coupled_size = opus_decoder_get_size(2);
57 mono_size = opus_decoder_get_size(1);
91 coupled_size = opus_decoder_get_size(2);
92 mono_size = opus_decoder_get_size(1);
209 coupled_size = opus_decoder_get_size(2);
210 mono_size = opus_decoder_get_size(1);
420 coupled_size = opus_decoder_get_size(2);
421 mono_size = opus_decoder_get_size(1);
opus_decoder.c 82 int opus_decoder_get_size(int channels) function
106 OPUS_CLEAR((char*)st, opus_decoder_get_size(channels));
150 st = (OpusDecoder *)opus_alloc(opus_decoder_get_size(channels));
  /external/libopus/include/
opus.h 355 * size = opus_decoder_get_size(channels);
359 * where opus_decoder_get_size() returns the required size for the decoder state. Note that
406 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_decoder_get_size(int channels);
430 * The state must be at least the size returned by opus_decoder_get_size().
431 * This is intended for applications which use their own allocator instead of malloc. @see opus_decoder_create,opus_decoder_get_size
    [all...]
  /external/libopus/tests/
test_opus_decode.c 88 dec2=(OpusDecoder *)malloc(opus_decoder_get_size(c));
90 memcpy(dec2,dec[t],opus_decoder_get_size(c));
91 memset(dec[t],255,opus_decoder_get_size(c));
98 decsize=opus_decoder_get_size(1);
test_opus_api.c 104 i=opus_decoder_get_size(c);
106 fprintf(stdout," opus_decoder_get_size(%d)=%d ...............%s OK.\n",c,i,i>0?"":"....");
132 dec=malloc(opus_decoder_get_size(2));
144 VG_CHECK(dec,opus_decoder_get_size(2));
239 dec2=malloc(opus_decoder_get_size(2));
240 memcpy(dec2,dec,opus_decoder_get_size(2));
242 if(memcmp(dec2,dec,opus_decoder_get_size(2))==0)test_failed();
561 VG_CHECK(streamdec,opus_decoder_get_size(1));
568 VG_CHECK(streamdec,opus_decoder_get_size(1));
    [all...]
test_opus_encode.c 350 dec_err[0]=(OpusDecoder *)malloc(opus_decoder_get_size(2));
351 memcpy(dec_err[0],dec,opus_decoder_get_size(2));

Completed in 63 milliseconds