From c2e055565d73f852855edb31f2548e77c89df611 Mon Sep 17 00:00:00 2001 From: Boris Grozev <boris@jitsi.org> Date: Tue, 17 Jun 2014 15:35:03 +0200 Subject: [PATCH] Adds RED and ULPFEC constants. --- src/org/jitsi/service/neomedia/codec/Constants.java | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/org/jitsi/service/neomedia/codec/Constants.java b/src/org/jitsi/service/neomedia/codec/Constants.java index 0bb06584..e50dceeb 100644 --- a/src/org/jitsi/service/neomedia/codec/Constants.java +++ b/src/org/jitsi/service/neomedia/codec/Constants.java @@ -188,7 +188,7 @@ public class Constants public static final String TELEPHONE_EVENT = "telephone-event"; /** - * The VP* constant + * The VP8 constant */ public static final String VP8 = "VP8"; @@ -196,4 +196,14 @@ public class Constants * The VP8/RTP constant. */ public static final String VP8_RTP = "VP8/rtp"; + + /** + * The name of the RED RTP format (RFC2198) + */ + public static final String RED = "red"; + + /** + * The name of the ulpfec RTP format (RFC5109) + */ + public static final String ULPFEC = "ulpfec"; } -- GitLab