public enum FecEncoding extends java.lang.Enum<FecEncoding>
| Enum Constant and Description |
|---|
DEFAULT
Default FEC encoding.
|
DISABLE
No FEC encoding.
|
LDPC_STAIRCASE
LDPC-Staircase FEC encoding (RFC 6816).
|
RS8M
Reed-Solomon FEC encoding (RFC 6865) with m=8.
|
| Modifier and Type | Method and Description |
|---|---|
static FecEncoding |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FecEncoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FecEncoding DISABLE
RTP protocol.public static final FecEncoding DEFAULT
RS8M.public static final FecEncoding RS8M
RTP_RS8M_SOURCE
and RS8M_REPAIR protocols for source
and repair endpoints.public static final FecEncoding LDPC_STAIRCASE
RTP_LDPC_SOURCE
and LDPC_REPAIR protocols for source
and repair endpoints.public static FecEncoding[] values()
for (FecEncoding c : FecEncoding.values()) System.out.println(c);
public static FecEncoding 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