Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425
  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. * An event carrying all statistics by ssrc.
  14. */
  15. export const BYTE_SENT_STATS = "statistics.byte_sent_stats";
  16. /**
  17. * An event carrying connection statistics.
  18. *
  19. * @param {object} connectionStats - The connection statistics carried by the
  20. * event such as <tt>bandwidth</tt>, <tt>bitrate</tt>, <tt>packetLoss</tt>,
  21. * <tt>resolution</tt>, and <tt>transport</tt>.
  22. */
  23. export const CONNECTION_STATS = "statistics.connectionstats";