選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

16 行
597B

  1. #ifndef _rtp_param_h_
  2. #define _rtp_param_h_
  3. // RFC3550 6.2 RTCP Transmission Interval (p21)
  4. // It is recommended that the fraction of the session bandwidth added for RTCP be fixed at 5%.
  5. // It is also recommended that 1/4 of the RTCP bandwidth be dedicated to participants that are sending data
  6. #define RTCP_BANDWIDTH_FRACTION 0.05
  7. #define RTCP_SENDER_BANDWIDTH_FRACTION 0.25
  8. #define RTCP_REPORT_INTERVAL 5000 /* milliseconds RFC3550 p25 */
  9. #define RTCP_REPORT_INTERVAL_MIN 2500 /* milliseconds RFC3550 p25 */
  10. #define RTP_PAYLOAD_MAX_SIZE (10 * 1024 * 1024)
  11. #endif /* !_rtp_param_h_ */