| Enum Constant and Description |
|---|
LDPC_REPAIR
FEC repair packet + FECFRAME LDPC-Staircase header (RFC 6816).
|
RS8M_REPAIR
FEC repair packet + FECFRAME Reed-Solomon header (RFC 6865) with m=8.
|
RTCP
RTCP over UDP (RFC 3550).
|
RTP
RTP over UDP (RFC 3550).
|
RTP_LDPC_SOURCE
RTP source packet (RFC 3550) + FECFRAME LDPC-Staircase footer (RFC 6816).
|
RTP_RS8M_SOURCE
RTP source packet (RFC 3550) + FECFRAME Reed-Solomon footer (RFC 6865) with m=8.
|
RTSP
RTSP 1.0 (RFC 2326) or RTSP 2.0 (RFC 7826).
|
| Modifier and Type | Method and Description |
|---|---|
static Protocol |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Protocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Protocol RTSP
Interfaces:
- Interface.CONSOLIDATED
Transports: - for signaling: TCP - for media: RTP and RTCP over UDP or TCP
public static final Protocol RTP
Interfaces:
- Interface.AUDIO_SOURCE
Transports: - UDP
Audio encodings:
- PacketEncoding.AVP_L16
FEC encodings: - none
public static final Protocol RTP_RS8M_SOURCE
Interfaces:
- Interface.AUDIO_SOURCE
Transports: - UDP
Audio encodings:
- similar to RTP
FEC encodings:
- FecEncoding.RS8M
public static final Protocol RS8M_REPAIR
Interfaces:
- Interface.AUDIO_REPAIR
Transports: - UDP
FEC encodings:
- FecEncoding.RS8M
public static final Protocol RTP_LDPC_SOURCE
Interfaces:
- Interface.AUDIO_SOURCE
Transports: - UDP
Audio encodings:
- similar to RTP
FEC encodings:
- FecEncoding.LDPC_STAIRCASE
public static final Protocol LDPC_REPAIR
Interfaces:
- Interface.AUDIO_REPAIR
Transports: - UDP
FEC encodings:
- FecEncoding.LDPC_STAIRCASE
public static final Protocol RTCP
Interfaces:
- Interface.AUDIO_CONTROL
Transports: - UDP
public static Protocol[] values()
for (Protocol c : Protocol.values()) System.out.println(c);
public static Protocol valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null