RTCRtpReceiveParameters dictionary, based upon the RTCRtpParameters dictionary, is returned by the the RTCRtpReceiver 方法 getParameters() . It describes the parameters being used by the receiver's RTP connection to the remote peer.

特性

This dictionary currently has no properties of its own; it exists for future expansion. It inherits all of the properties of its parent, RTCRtpParameters .

范例

This example obtains the canonical name (CNAME) being used for RTCP RTCRtpReceiver .

function getRtcpCNAME(receiver) {
  let parameters = receiver.getParameters();
  return parameters.rtcp.cname;
}
					

规范

规范 状态 注释
WebRTC 1.0: Real-time Communication Between Browsers
The definition of 'RTCRtpReceiveParameters' in that specification.
候选推荐 初始定义。

浏览器兼容性

The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

No compatibility data found. Please contribute data for "api.RTCRtpReceiveParameters" (depth: 1) to the MDN 兼容性数据存储库 .

另请参阅

元数据

  • 最后修改: