Riza Sulistyo
Riza Sulistyo
Currently, the source code was written with these formatting setting: ``` Indentation: 4 Tab size: 8 ``` Some editors might not be able to correctly format when displaying/editing the code,...
Currently when using opensl sound device (android) error is not returned when it fails on ``opensl_create_stream()``, which might lead to a crash. This ticket will fix the issue by returning...
Consider the scenario: 1. let the account do a successful registration using TCP/TLS. 2. after register is complete. terminate TCP/TLS from remote side, to disconnect the transport. 3. regc try's...
This PR will add and update the symbols due to the changes from #2722
FFMPEG 5.1 has some changes which will break current build. The changes mostly related to removing some APIs that were already deprecated: 1. `AVCodec::encode2()/decode()` removed [here](https://git.ffmpeg.org/gitweb/ffmpeg.git/commit/20f972701806be20a77f808db332d9489343bb78). 2. `av_codec_next()/avcodec_register_all()` removed [here](https://git.ffmpeg.org/gitweb/ffmpeg.git/commit/4b2be3f8d45db8fa795233b938391b23f6c518ea...
SDP may specify `a=inactive` with media port set to non zero. ``` v=0 o=- 3872230549 3872230550 IN IP4 192.168.1.121 s=pjmedia b=AS:84 t=0 0 a=X-nat:0 m=audio 4002 RTP/AVP 0 120 c=IN...
This PR will add support for lyra codec (https://github.com/google/lyra). ### Requirement: - Lyra codec library (version 1.3), download from [here](https://github.com/google/lyra/releases/tag/v1.3.0) ### Notes and limitations: - The implementation has only been...
This will fix the issue in #3959 (the device id in audio device info is set to 0 for all devices).
Warnings from coverity: ``` *** CID 1547500: Integer handling issues (INTEGER_OVERFLOW) /pjsip/src/pjsip-ua/sip_100rel.c: 293 in pjsip_100rel_create_prack() 287 dd->uac_state_list = uac_state; 288 } 289 290 /* If this is from new INVITE...
This is the current pattern for encoding/decoding using Android media codec: 1. check the input buffer availability 2. once an input buffer is available, input the data to encode/decode 3....