Package elemental2.dom
Interface RTCRtpCodecCapability
-
@JsType(isNative=true, namespace="<global>") public interface RTCRtpCodecCapability
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static RTCRtpCodecCapability
create()
int
getChannels()
int
getClockRate()
java.lang.String
getMimeType()
java.lang.String
getSdpFmtpLine()
void
setChannels(int channels)
void
setClockRate(int clockRate)
void
setMimeType(java.lang.String mimeType)
void
setSdpFmtpLine(java.lang.String sdpFmtpLine)
-
-
-
Method Detail
-
create
@JsOverlay static RTCRtpCodecCapability create()
-
getChannels
@JsProperty int getChannels()
-
getClockRate
@JsProperty int getClockRate()
-
getMimeType
@JsProperty java.lang.String getMimeType()
-
getSdpFmtpLine
@JsProperty java.lang.String getSdpFmtpLine()
-
setChannels
@JsProperty void setChannels(int channels)
-
setClockRate
@JsProperty void setClockRate(int clockRate)
-
setMimeType
@JsProperty void setMimeType(java.lang.String mimeType)
-
setSdpFmtpLine
@JsProperty void setSdpFmtpLine(java.lang.String sdpFmtpLine)
-
-