Displaying 2 results from an estimated 2 matches for "opus_custom_encod".
Did you mean:
opus_custom_encode
2019 Feb 17
2
Custom mode
...e my I2S device master and, thus, be able to pull the
data at 16kHz)
Consequently I have been looking at “opus custom” as a solution but even
with a (seemingly) low complexity it does not yield the desired result.
*Setup code:*
mode = opus_custom_mode_create(15625, 64, &err);
size = opus_custom_encoder_get_size(mode, 1);
enc = malloc(size);
err = opus_custom_encoder_init(enc, mode, 1);
err = opus_custom_encoder_ctl(enc, OPUS_SET_BITRATE(16000));
err = opus_custom_encoder_ctl(enc, OPUS_SET_COMPLEXITY(0));
size = opus_custom_decoder_get_size(mode, 1);
dec = malloc(size);
err = opus_custo...
2019 Feb 20
0
Fwd: Custom mode
...“opus custom” as a solution but even
>> with a (seemingly) low complexity it does not yield the desired result.
>>
>>
>>
>> *Setup code:*
>>
>>
>>
>> mode = opus_custom_mode_create(15625, 64, &err);
>>
>>
>>
>> size = opus_custom_encoder_get_size(mode, 1);
>>
>> enc = malloc(size);
>>
>> err = opus_custom_encoder_init(enc, mode, 1);
>>
>> err = opus_custom_encoder_ctl(enc, OPUS_SET_BITRATE(16000));
>>
>> err = opus_custom_encoder_ctl(enc, OPUS_SET_COMPLEXITY(0));
>>
>>
&...