Skip to content
Snippets Groups Projects
  1. Nov 16, 2016
  2. Nov 15, 2016
  3. Nov 14, 2016
    • Matt Jordan's avatar
      pjproject: Use a much higher limit for PJ_ICE_MAX_CHECKS · edd7ae85
      Matt Jordan authored
      The PJ_ICE_MAX_CHECKS constant is used by pjproject to determine how
      many pairs of local/remote candidates will be made. If for some reason
      we reach this upper bound, ICE will generally fail and no media will
      flow between the browser and Asterisk.
      
      This patch makes PJ_ICE_MAX_CHECKS set to the total possible number of
      pairs of candidates we'd theoretically allow, which is
      PJ_ICE_MAX_CAND^2. Prior to this patch, we simply multiplied
      PJ_ICE_MAX_CAND by two; on systems with multiple interfaces (I blame
      Docker), this is far too low to allow WebRTC calls to succeed.
      
      Setting this to be PJ_ICE_MAX_CAND^2 allowed WebRTC calls to succeed
      even when the system Asterisk was running on had quite a few virtual
      interfaces.
      
      Change-Id: Icd4f17de0ac9d3a83dddfc8bf1cb7616bc107d55
      edd7ae85
    • Matt Jordan's avatar
      apps/app_echo: Only relay a single video source change frame · cc863292
      Matt Jordan authored
      In 9785e8d0, app_echo was updated to relay video source updates to the
      channel for the purposes of displaying video in WebRTC tests.
      Unfortunately, this can cause a Kafkaesque nightmare if two or more
      Local channels are in a bridge together where their ends are in
      app_echo. When this situation occurs, a video update sent into app_echo
      will cause the video update to be relayed to the other Local channels,
      causing another round of video updates, etc. In not much time at all,
      the channel length queues will be overwhelmed, channel alert pipes will
      fail, and all hell will break loose as Asterisk merrily continues to
      throw more video update requests onto the channels.
      
      This patch updates app_echo to *only* relay a single video update. Once
      a video update has been made, all further video updates are dropped.
      This meets the intended purpose of the original patch: if we get a video
      update and we're in app_echo, go ahead and ask the sender to update
      themselves. However, once we've got that video stream sync'd up, don't
      keep spamming the world.
      
      Change-Id: I9210780b08d4c17ddb38599d1c64453adfc34f74
      cc863292
    • Matt Jordan's avatar
      res/ari/resource_bridges: Add the ability to manipulate the video source · a72ef381
      Matt Jordan authored
      In multi-party bridges, Asterisk currently supports two video modes:
       * Follow the talker, in which the speaker with the most energy is shown
         to all participants but the speaker, and the speaker sees the
         previous video source
       * Explicitly set video sources, in which all participants see a locked
         video source
      
      Prior to this patch, ARI had no ability to manipulate the video source.
      This isn't important for two-party bridges, in which Asterisk merely
      relays the video between the participants. However, in a multi-party
      bridge, it can be advantageous to allow an external application to
      manipulate the video source.
      
      This patch provides two new routes to accomplish this:
      (1) setVideoSource: POST /bridges/{bridgeId}/videoSource/{channelId}
          Sets a video source to an explicit channel
      (2) clearVideoSource: DELETE /bridges/{bridgeId}/videoSource
          Removes any explicit video source, and sets the video mode to talk
          detection
      
      ASTERISK-26595 #close
      
      Change-Id: I98e455d5bffc08ea5e8d6b84ccaf063c714e6621
      a72ef381
    • Joshua Colp's avatar
    • Sebastien Duthil's avatar
      res_ari: Add support for channel variables in ARI events. · c6d755de
      Sebastien Duthil authored
      This works the same as for AMI manager variables. Set
      "channelvars=foo,bar" in your ari.conf general section, and then the
      channel variables "foo" and "bar" (along with their values), will
      appear in every Stasis websocket channel event.
      
      ASTERISK-26492 #close
      patches:
        ari_vars.diff submitted by Mark Michelson
      
      Change-Id: I5609ba239259577c0948645df776d7f3bc864229
      c6d755de
    • George Joseph's avatar
      cli: Fix ast_el_read_char to work with libedit >= 3.1 · 72da2ef9
      George Joseph authored
      Libedit 3.1 is not build with unicode on as a default and so the
      prototype for the el_gets callback changed from expecting a char buffer
      to accepting a wchar buffer.  If ast_el_read_char isn't changed,
      the cli reads garbage from teh terminal.
      
      Added a configure test for (*el_rfunc_t)(EditLine *, wchar_t *) and
      updated ast_el_read_char to use the HAVE_ define to detemrine whether
      to use char or wchar.
      
      ASTERISK-26592 #close
      
      Change-Id: I9099b46f68e06d0202ff80e53022a2b68b08871a
      72da2ef9
    • Joshua Colp's avatar
    • Joshua Colp's avatar
  4. Nov 11, 2016
  5. Nov 10, 2016
  6. Nov 09, 2016
Loading