Skip to content
Snippets Groups Projects
  1. Jun 13, 2017
  2. Jun 12, 2017
  3. Jun 11, 2017
  4. Jun 09, 2017
  5. Jun 08, 2017
  6. Jun 07, 2017
  7. Jun 06, 2017
  8. Jun 05, 2017
    • Kevin Harwell's avatar
      channel: ast_write frame wrongly freed after call to audiohooks · d8802a6a
      Kevin Harwell authored
      ASTERISK-26419 introduced a bug when calling ast_audiohook_write_list in
      ast_write. It would free the frame given to ast_write if the frame returned
      by ast_audiohook_write_list was different than the given one. The frame give
      to ast_write should never be freed within that function. It is the caller's
      resposibility to free the frame after writing (or when it its done with it).
      By freeing it within ast_write this of course led to some memory corruption
      problems.
      
      This patch makes it so the frame given to ast_write is no longer freed within
      the function. The frame returned by ast_audiohook_write_list is now subsequently
      used in ast_write and is freed later. It is freed either after translate if the
      frame returned by translate is different, or near the end of ast_write prior to
      function exit.
      
      ASTERISK-26973 #close
      
      Change-Id: Ic9085ba5f555eeed12f6e565a638c3649695988b
      d8802a6a
    • Joshua Colp's avatar
  9. Jun 01, 2017
  10. May 31, 2017
  11. May 30, 2017
    • Sean Bright's avatar
      stasis_recording: Correct ast_asprintf error checking · 9dce4a94
      Sean Bright authored
      ASTERISK-27021 #close
      Reported by: Tim Morgan
      
      Change-Id: I0ac061f040093e806c3b1f4e2340864f3ce4dd75
      9dce4a94
    • Sean Bright's avatar
      format: Reintroduce smoother flags · 5c27fe21
      Sean Bright authored
      In review 4843 (ASTERISK-24858), we added a hack that forced a smoother
      creation when sending signed linear so that the byte order was adjusted
      during transmission. This was needed because smoother flags were lost
      during the new format work that was done in Asterisk 13.
      
      Rather than rolling that same hack into res_rtp_multicast, re-introduce
      smoother flags so that formats can dictate their own options.
      
      Change-Id: I77b835fba0e539c6ce50014a984766f63cab2c16
      5c27fe21
    • Mark Michelson's avatar
      Confbridge: Add "sfu" video mode to bridge profile options. · 39d14834
      Mark Michelson authored
      A previous commit added plumbing to bridge_softmix to allow for an SFU
      experience with Asterisk. This commit adds an option to app_confbridge
      that allows for a confbridge to actually make use of the SFU video mode.
      
      SFU mode is implemented in a "set it and forget it" kind of way. That
      is, when the bridge is created, if SFU mode is enabled, then the video
      mode gets set to SFU and cannot be changed. Future improvements may
      allow for a hybrid experience (e.g. forward multiple video streams,
      specifically those of the most recent talkers), but for this addition,
      no such capability is present.
      
      Change-Id: I87bbcb63dec6dbbb42488f894871b86f112b2020
      39d14834
    • Mark Michelson's avatar
      Add primitive SFU support to bridge_softmix. · 2da86940
      Mark Michelson authored
      This sets up the "plumbing" in bridge_softmix to
      be able to accommodate Asterisk asking as an SFU
      (selective forwarding unit) for conferences.
      
      The way this works is that whenever a channel enters or leaves a
      conference, all participants in the bridge get sent a stream topology
      change request. The topologies consist of the channels' original
      topology, along with video destination streams corresponding to each
      participants' source video streams. So for instance, if Alice, Bob, and
      Carol are in the conference, and each supplies one video stream, then
      the topologies for each would look like so:
      
      Alice:
      Audio,
      Source video(Alice),
      Destination Video(Bob),
      Destination video (Carol)
      
      Bob:
      Audio,
      Source video(Bob)
      Destination Video(Alice),
      Destination video (Carol)
      
      Carol:
      Audio,
      Source video(Carol)
      Destination Video(Alice),
      Destination video (Bob)
      
      This way, video that arrives from a source video stream can then be
      copied out to the destination video streams on the other participants'
      channels.
      
      Once the bridge gets told that a topology on a channel has changed, the
      bridge constructs a map in order to get the video frames routed to the
      proper destination streams. This is done using the bridge channel's
      stream_map.
      
      This change is bare-bones with regards to SFU support. Some key features
      are missing at this point:
      
      * Stream limits. This commit makes no effort to limit the number of
        streams on a specific channel. This means that if there were 50 video
        callers in a conference, bridge_softmix will happily send out topology
        change requests to every channel in the bridge, requesting 50+
        streams.
      
      * Configuration. The plumbing has been added to bridge_softmix, but
        there has been nothing added as of yet to app_confbridge to enable SFU
        video mode.
      
      * Testing. Some functions included here have unit tests.
        However, the functionality as a whole has only been verified by
        hand-tracing the code.
      
      * Selectivenss. For a "selective" forwarding unit, this does not
        currently have any means of being selective.
      
      * Features. Presumably, someone might wish to only receive video from
        specific sources. There are no external-facing functions at the moment
        that allow for users to select who they receive video from.
      
      * Efficiency. The current scheme treats all video streams as being
        unidirectional. We could be re-using a source video stream as a
        desetnation, too. But to simplify things on this first round, I did it
        this way.
      
      Change-Id: I7c44a829cc63acf8b596a337b2dc3c13898a6c4d
      2da86940
    • Sean Bright's avatar
      format_mp3: Re-work menuselect/build issues · 045d7b8c
      Sean Bright authored
      Rather than removing format_mp3 from ALL_C_MODS (which caused format_mp3
      to not show up in menuselect), use .PHONY targets when the necessary
      source files are not present.
      
      ASTERISK-23951
      Reported by: Tzafrir Cohen
      
      Change-Id: I0a7512c51acc9e86043671795020b0de725bd9e8
      045d7b8c
    • George Joseph's avatar
      test_json: Fix test names with reserved words · 80206cdc
      George Joseph authored
      Some of the test names were actually reserved words (true, false,
      int, null, string, bool).  When the jenkins test results analyzer
      does its thing it tries to create a map using the test names as
      keys and fails because they're reserved words.
      
      Added "type_" to those test names.
      
      Change-Id: I90d809f46969c78a1c605b736ff0635196a2cf1b
      80206cdc
    • Jenkins2's avatar
  12. May 26, 2017
Loading