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

  /external/libopus/src/
opus_multistream_encoder.c 101 coupled_size = opus_encoder_get_size(2);
102 mono_size = opus_encoder_get_size(1);
121 coupled_size = opus_encoder_get_size(2);
122 mono_size = opus_encoder_get_size(1);
413 coupled_size = opus_encoder_get_size(2);
414 mono_size = opus_encoder_get_size(1);
504 coupled_size = opus_encoder_get_size(2);
505 mono_size = opus_encoder_get_size(1);
950 coupled_size = opus_encoder_get_size(2);
951 mono_size = opus_encoder_get_size(1)
    [all...]
opus_encoder.c 168 int opus_encoder_get_size(int channels) function
194 OPUS_CLEAR((char*)st, opus_encoder_get_size(channels));
548 st = (OpusEncoder *)opus_alloc(opus_encoder_get_size(channels));
    [all...]
  /external/libopus/include/
opus.h 100 * size = opus_encoder_get_size(channels);
105 * where opus_encoder_get_size() returns the required size for the encoder state. Note that
171 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_encoder_get_size(int channels);
216 * The memory pointed to by st must be at least the size returned by opus_encoder_get_size().
218 * @see opus_encoder_create(),opus_encoder_get_size()
    [all...]
  /external/libopus/tests/
test_opus_encode.c 366 enccpy=(OpusEncoder *)malloc(opus_encoder_get_size(2));
367 memcpy(enccpy,enc,opus_encoder_get_size(2));
368 memset(enc,255,opus_encoder_get_size(2));
test_opus_api.c     [all...]

Completed in 464 milliseconds