Skip to content
Snippets Groups Projects
  1. Jan 29, 2021
  2. Jan 28, 2021
  3. Jan 27, 2021
    • Sébastien Blin's avatar
      connectivity: enhance shutdown handling and first packets · 0eb72e4f
      Sébastien Blin authored and Adrien Béraud's avatar Adrien Béraud committed
      This patch embeds multiple litte fixes detected while working on swarms:
      + When stopping an account, shutdownConnections() should be done
      before dht->join() to avoid any lock (because some io::run() are done).
      + Also, some channel were not awoken when clearing sockets.
      + channelDatas_ must be locked while accessed
      + setOnRecv() can be done after first packets on channel, so to avoid
      to miss first packets, re-inject current stored datas.
      
      Change-Id: I1d1335b5b6873b281c5357d18121a4bb525646f8
      0eb72e4f
  4. Jan 26, 2021
    • Mohamed Chibani's avatar
      upnp/pupnp: request all mapping remove on IGD discovery · af46a372
      Mohamed Chibani authored
      Send a request to delete all mappings created by previous
      JAMI instances as soon as a new upnp IGD is discovered.
      This is necessary with some implementations since they may
      not respond well if the list of existing mappings is large.
      Also make new requests for mappings with failing states.
      
      Change-Id: I97308f1620128a63f111bcfc02122b472def5c85
      Gitlab: #335
      af46a372
  5. Jan 25, 2021
  6. Jan 22, 2021
    • Philip-Dylan Gleonec's avatar
      contrib/ffmpeg: add FEC enable to patch list · 46c952b3
      Philip-Dylan Gleonec authored and Pierre Lespagnol's avatar Pierre Lespagnol committed
      Add the patches that enable FEC in libopus codec in ffmpeg package.json
      This ensures that the patches are properly applied, especially in the
      Windows builds.
      
      Issue: #5157
      Change-Id: I438de63528894d3c7ded553f1982d664bda26e31
      46c952b3
    • Philip-Dylan Gleonec's avatar
      audio_rtp_session: add RTCP packet loss control · 1367f46a
      Philip-Dylan Gleonec authored and Pierre Lespagnol's avatar Pierre Lespagnol committed
      Add a rtcpCheckerThread to get packet loss estimation from the RTCP RR
      packets, and send this information to the audio encoder.
      This packet loss estimation is capped between 0 and 100.
      When the new packet loss is higher than present estimation, the value
      in the codec is set to the new value, in order to react to a quick
      network quality drop.
      When the new packet loss estimation is lower than present estimation,
      the new value goes through a basic filter to avoid reducing the packet
      loss estimation too fast.
      
      Issue: #5157
      Change-Id: Ibc1d3d6f6935e3b73c362bd212ef997cfd7b8d2f
      1367f46a
    • Philip-Dylan Gleonec's avatar
      audio_sender: add setPackerLoss method · 764c9cb0
      Philip-Dylan Gleonec authored and Pierre Lespagnol's avatar Pierre Lespagnol committed
      Add setPacketLoss method which enable setting a new packet loss
      estimation.
      This method is based on the model of setBitrate in video_sender.
      
      Issue: #5157
      Change-Id: Ib757ce9c241f0b02b8a9a899b3d5a22e898203b3
      764c9cb0
    • Philip-Dylan Gleonec's avatar
      media_encoder: add setPacketLoss method · 998791a3
      Philip-Dylan Gleonec authored and Pierre Lespagnol's avatar Pierre Lespagnol committed
      Add a setPacketLoss method to enable setting a new packet loss
      estimation in the codec.
      This method follows the model of setBitrate and requires the
      implementation of getCurrentAudioAVCtx and isDynPacketLossSupported,
      which are also included in this patch.
      
      Issue: #5157
      Change-Id: I62f5246df1df0dc0867649299c6bbf6c12db43a2
      998791a3
    • Philip-Dylan Gleonec's avatar
      ffmpeg: reload packet loss for each libopus encode · c943ba89
      Philip-Dylan Gleonec authored and Pierre Lespagnol's avatar Pierre Lespagnol committed
      The libopus codec only reads and impelemnts options from the
      AVCodecContext at initialization. This means that packet loss
      estimation can not be dynamically set.
      This patch corrects this by reloading the packet loss estimation before
      each encode. This ensures that each opus packet is encoded with FEC
      data corresponding to the last packet loss estimation.
      This patch does not check the previous packet loss estimation, as it
      would increase software complexity, with one call of
      opus_multistream_encoder_ctl() at best when packet loss is unchanged,
      and two calls at most (one to get value, one to set value).
      
      Issue: #5157
      Change-Id: I3fce82d8b310a5751dc7fbc9a1b766d43c41c304
      c943ba89
    • Philip-Dylan Gleonec's avatar
      media_encoder: enable libopus FEC encoding · 7c960d55
      Philip-Dylan Gleonec authored and Pierre Lespagnol's avatar Pierre Lespagnol committed
      Adds a function to initialize the opus encoder with FEC support and a
      default packet loss of 10%.
      In future iterations, the default value should be set to 0 and the
      packet loss adapted accordingly to RTCP control packets.
      
      Issue: #5156
      Change-Id: I79b9c5e38ed388466d7b71a394f961d2ff9b001f
      7c960d55
    • Philip-Dylan Gleonec's avatar
      ffmpeg: add FEC support to libopusenc · b318b93f
      Philip-Dylan Gleonec authored and Pierre Lespagnol's avatar Pierre Lespagnol committed
      Add option to enable FEC support in libopus encoder, and adds uses this
      option to instanciate the opus encoder.
      This option is disabled by default, in order to avoid changing default
      ffmpeg behavior. If FEC support is enabled and packet loss is higher
      than 0, the encoder adds ancilliary data to the packet so the decoder
      can restore the previous packet, in case it is lost. As more data has
      to be transmitted, this reduces the audio quality when using a fixed
      bitrate.
      
      Issue: #5156
      Change-Id: Ic7d69ab122bd63c3ff880e46a0a0dcb316b00760
      b318b93f
    • Philip-Dylan Gleonec's avatar
      media_decoder: enable libopus FEC by default · d5b7d5ea
      Philip-Dylan Gleonec authored and Pierre Lespagnol's avatar Pierre Lespagnol committed
      By default, sets the option to use FEC decoding with libopus when
      preparing the decoder context.
      
      Issue: #5155
      Change-Id: Icc9dcbbd9df3f538eb2da794e2ff9b6a0380bdc2
      d5b7d5ea
    • Philip-Dylan Gleonec's avatar
      ffmpeg: add FEC support for opus decoder · 00770b03
      Philip-Dylan Gleonec authored and Pierre Lespagnol's avatar Pierre Lespagnol committed
      Patch ffmpeg to add an option (AVOption) to enable opus FEC decoding
      using libopus and add FEC decoding when the option is enabled.
      
      Issue: #5155
      Change-Id: I78754a9d02a333c7d73da60b87fd40a6da544835
      00770b03
    • Pierre Lespagnol's avatar
      media_encoder: hardware frame refactor · b3d23010
      Pierre Lespagnol authored and Sébastien Blin's avatar Sébastien Blin committed
      Fix unlinked hardware encoder/decoder cases (Conference, plugin, ...)
      
      Change-Id: I045de3d24d89e93141309b6b353cd0bcabd8509f
      b3d23010
  7. Jan 20, 2021
  8. Jan 15, 2021
  9. Jan 13, 2021
  10. Jan 12, 2021
  11. Jan 11, 2021
  12. Jan 08, 2021
  13. Jan 06, 2021
  14. Jan 04, 2021
  15. Dec 30, 2020
  16. Dec 23, 2020
  17. Dec 22, 2020
  18. Dec 21, 2020
  19. Dec 16, 2020
Loading