Displaying 2 results from an estimated 2 matches for "codedmicbuf".
2019 Feb 17
2
Custom mode
...err = opus_custom_encoder_ctl(enc, OPUS_SET_COMPLEXITY(0));
size = opus_custom_decoder_get_size(mode, 1);
dec = malloc(size);
err = opus_custom_decoder_init(dec, mode, 1);
*ISR code (called once every 4.096ms):*
nbBytes = opus_custom_encode(
enc, (opus_int16 *)lMicBuf, 64, codedMicBuf, 64);
frame_size = opus_custom_decode(
dec, codedMicBuf, 64, decodedMicBuf, 64);
*Build:*
C:\Program Files\SEGGER\SEGGER Embedded Studio for ARM
3.50\gcc\arm-none-eabi\bin\cc1" -fmessage-length=0
-fno-diagnostics-show-caret -mcpu=cortex-m4 -mlittle-endian
-mfloat-abi=ha...
2019 Feb 20
0
Fwd: Custom mode
...t;
>> dec = malloc(size);
>>
>> err = opus_custom_decoder_init(dec, mode, 1);
>>
>>
>>
>> *ISR code (called once every 4.096ms):*
>>
>>
>>
>> nbBytes = opus_custom_encode(
>>
>> enc, (opus_int16 *)lMicBuf, 64, codedMicBuf, 64);
>>
>>
>>
>> frame_size = opus_custom_decode(
>>
>> dec, codedMicBuf, 64, decodedMicBuf, 64);
>>
>>
>>
>>
>>
>> *Build:*
>>
>>
>>
>> C:\Program Files\SEGGER\SEGGER Embedded Studio for AR...