1. 29 Oct, 2020 2 commits
  2. 05 Aug, 2019 1 commit
  3. 25 Jul, 2019 1 commit
    • Saúl Ibarra Corretgé's avatar
      api: add support for the MediaStream constructor · ccee251a
      Saúl Ibarra Corretgé authored
      The implementation tries to be as faithful to the standard as possible,
      however an extra function call is still required for cleanup:
      MediaStream.release().
      
      Now that a track can outlive the stream that originated it, there is
      also MediaStreamTrack.release(). Generally it's not needed to call it
      unless you have already released the stream and want to dispose of the
      track alone.
      
      Add / remove track operations on streams are only supported for local
      tracks (ie, those gotten via getUserMedia).
      
      Note: calling release() on a track still attached to a stream is
      considered undefined behavior and may lead to crashes.
      ccee251a
  4. 30 Oct, 2016 1 commit
    • Lyubomir Marinov's avatar
      [Android] Fix MediaStream.id collisions · 793143ba
      Lyubomir Marinov authored
      MediaStream's id is unique only within a PeerConnection. But
      WebRTCModule presumed that it was globally unique. (Re)introduce a
      reactTag in the JavaScript MediaStream to make sure that the Java
      WebRTCModule is able to distinguish equal MediaStream ids based on the
      Java MediaStream instance reference.
      793143ba
  5. 26 Aug, 2016 1 commit
  6. 30 Jun, 2016 1 commit
    • Philipp von Weitershausen's avatar
      Style fixes · 7685d9f6
      Philipp von Weitershausen authored
      - import statements need to be determinated by semicolons too
      - if we're using ES6 imports now, we might as well use ES6 exports too
      - strive to stay within 80 chars per line
      7685d9f6
  7. 31 May, 2016 1 commit
  8. 05 May, 2016 1 commit
  9. 10 Apr, 2016 2 commits