Class RTCCodec
java.lang.Object
org.kurento.client.Stats
org.kurento.client.RTCStats
org.kurento.client.RTCCodec
RTC codec statistics
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionlongget Use 2 for stereo, missing for most other cases.longget Represents the media sampling rate.getCodec()get e.g., video/vp8 or equivalent.get From the SDP description line.longget Payload type as used in RTP encoding.voidsetChannels(long channels) set Use 2 for stereo, missing for most other cases.voidsetClockRate(long clockRate) set Represents the media sampling rate.voidset e.g., video/vp8 or equivalent.voidsetParameters(String parameters) set From the SDP description line.voidsetPayloadType(long payloadType) set Payload type as used in RTP encoding.Methods inherited from class Stats
getId, getTimestampMillis, getType, setId, setTimestampMillis, setType
-
Constructor Details
-
RTCCodec
protected RTCCodec()Default private constructor of RTCCodec for serialization with Jackson -
RTCCodec
-
-
Method Details
-
getPayloadType
public long getPayloadType()get Payload type as used in RTP encoding. -
setPayloadType
public void setPayloadType(long payloadType) set Payload type as used in RTP encoding. -
getCodec
get e.g., video/vp8 or equivalent. -
setCodec
set e.g., video/vp8 or equivalent. -
getClockRate
public long getClockRate()get Represents the media sampling rate. -
setClockRate
public void setClockRate(long clockRate) set Represents the media sampling rate. -
getChannels
public long getChannels()get Use 2 for stereo, missing for most other cases. -
setChannels
public void setChannels(long channels) set Use 2 for stereo, missing for most other cases. -
getParameters
get From the SDP description line. -
setParameters
set From the SDP description line.
-