@Generated(value="org.realityforge.webtack")
@JsType(isNative=true,
namespace="<global>",
name="Object")
public interface RTCRtpCodecCapability
| Modifier and Type | Interface and Description |
|---|---|
static interface |
RTCRtpCodecCapability.Builder
The WebRTC API's RTCRtpCodecCapability dictionary provides information describing the capabilities of a single media codec.
|
| Modifier and Type | Method and Description |
|---|---|
int |
channels() |
int |
clockRate() |
static RTCRtpCodecCapability.Builder |
create(java.lang.String mimeType,
int clockRate) |
@JsNonNull java.lang.String |
mimeType() |
java.lang.String |
sdpFmtpLine() |
void |
setChannels(int channels) |
void |
setClockRate(int clockRate) |
void |
setMimeType(@JsNonNull java.lang.String mimeType) |
void |
setSdpFmtpLine(@JsNonNull java.lang.String sdpFmtpLine) |
@JsOverlay @Nonnull static RTCRtpCodecCapability.Builder create(@Nonnull java.lang.String mimeType, int clockRate)
@JsProperty(name="mimeType") @JsNonNull java.lang.String mimeType()
@JsProperty void setMimeType(@JsNonNull java.lang.String mimeType)
@JsProperty(name="clockRate") int clockRate()
@JsProperty void setClockRate(int clockRate)
@JsProperty(name="channels") int channels()
@JsProperty void setChannels(int channels)
@JsProperty(name="sdpFmtpLine") java.lang.String sdpFmtpLine()
@JsProperty void setSdpFmtpLine(@JsNonNull java.lang.String sdpFmtpLine)