You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Events.js 842B

1234567891011121314151617181920212223242526
  1. /**
  2. * Notifies about audio level in RTP statistics by SSRC.
  3. *
  4. * @param ssrc - The synchronization source identifier (SSRC) of the
  5. * endpoint/participant whose audio level is being reported.
  6. * @param {number} audioLevel - The audio level of <tt>ssrc</tt> according to
  7. * RTP statistics.
  8. * @param {boolean} isLocal - <tt>true</tt> if <tt>ssrc</tt> identifies the
  9. * local endpoint/participant; otherwise, <tt>false</tt>.
  10. */
  11. export const AUDIO_LEVEL = "statistics.audioLevel";
  12. /**
  13. * Notifies about audio problem with remote participant.
  14. */
  15. export const AUDIO_NOT_WORKING = "statistics.audio_not_working";
  16. /**
  17. * An event carrying connection statistics.
  18. */
  19. export const CONNECTION_STATS = "statistics.connectionstats";
  20. /**
  21. * An event carrying all statistics by ssrc.
  22. */
  23. export const BYTE_SENT_STATS = "statistics.byte_sent_stats";