SDPAttributeType Enumeration |
Namespace: Ozeki.MediaAssembly: OzekiSDK (in OzekiSDK.dll) Version: 1.8.12.0 (1.8.12)
Syntax public enum SDPAttributeType
Public Enumeration SDPAttributeType
public enum class SDPAttributeType
Members
| Member name | Value | Description |
---|
| Extension | 0 |
Extension attribute type.
|
| Category | 1 |
This attribute gives the dot-separated hierarchical category of the session. This is to enable a receiver to filter unwanted sessions by category. (SDP a=cat)
|
| Keywords | 2 |
Like the cat attribute, this is to assist identifying wanted sessions at the receiver. (SDP a=keywds)
|
| Tool | 3 |
This gives the name and version number of the tool used to create the session description. (SDP a=tool)
|
| PacketizationTime | 4 |
This gives the length of time in milliseconds represented by the media in a packet. (SDP a=ptime)
|
| MaxPacketizationTime | 5 |
This gives the maximum amount of media that can be encapsulated in each packet, expressed as time in milliseconds. (SDP a=maxptime)
|
| RtpMap | 6 |
This attribute maps from an RTP payload type number (as used in an "m=" line) to an encoding name denoting the payload format to be used.
It also provides information on the clock rate and encoding parameters. (SDP a=rtpmap)
|
| ReceiveOnly | 7 |
This specifies that the tools should be started in send and receive mode. (SDP a=recvonly)
|
| SendRecv | 8 |
This specifies that the tools should be started in send and receive mode. (SDP a=sendrecv)
|
| SendOnly | 9 |
This specifies that the tools should be started in send-only mode. (SDP a=sendonly)
|
| Inactive | 10 |
This specifies that the tools should be started in inactive mode. No media is sent over an inactive media stream. (SDP a=inactive)
|
| Orientation | 11 |
Normally this is only used for a whiteboard or presentation tool. It specifies the orientation of a the workspace on the screen. (SDP a=orient)
|
| ConferenceType | 12 |
This specifies the type of the conference. (SDP a=type)
|
| Charset | 13 |
This specifies the character set to be used to display the session name and information data. (SDP a=charset)
|
| SdpLang | 14 |
This can be a session-level attribute or a media-level attribute.
As a session-level attribute, it specifies the language for the session description.
As a media-level attribute, it specifies the language for any media-level SDP information field associated with that media.
(SDP a=sdplang)
|
| Lang | 15 |
This can be a session-level attribute or a media-level attribute.
As a session-level attribute, it specifies the default language for the session being described.
As a media-level attribute, it specifies the language for that media, overriding any session-level language specified.
(SDP a=lang)
|
| FrameRate | 16 |
This gives the maximum video frame rate in frames/sec. (SDP a=framerate)
|
| Quality | 17 |
This gives a suggestion for the quality of the encoding as an integer value. (SDP a=quality)
|
| Fmtp | 18 |
This attribute allows parameters that are specific to a particular format to be conveyed in a way that SDP does not have to understand them. (SDP a=fmtp)
|
| Crypto | 19 |
Describes the cryptographic suite, key parameters, and session parameters for the preceding unicast media line. (SDP a=crypto)
|
| Candidate | 20 |
Provides one of many possible candidate addresses for communication.
These addresses are validated with an end-to-end connectivity check using Session Traversal Utilities for NAT (STUN)). (SDP a=candidate)
|
| RemoteCandidates | 21 |
Provides the identity of the remote candidates that the offerer wishes the answerer to use in its answer. (SDP a=remote-candidates)
|
| IceLite | 22 |
Indicates that an agent has the minimum functionality required to support ICE inter-operation with a peer that has a full implementation. (SDP a=ice-lite)
|
| IceMismatch | 23 |
Indicates that an agent is ICE capable, but did not proceed with ICE due to a mismatch of candidates with the default destination for media signaled in the SDP. (SDP a=ice-mismatch)
|
| IcePwd | 24 |
Provides the password used to protect STUN connectivity checks. (SDP a=ice-pwd)
|
| IceUfrag | 25 |
Provides the fragments used to construct the username in STUN connectivity checks. (SDP a=ice-ufrag)
|
| IceOptions | 26 |
Indicates the ICE options or extensions used by the agent. (SDP a=ice-options)
|
See Also