summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorMathieu Duponchelle <mathieu@centricular.com>2017-11-29 17:57:52 +0100
committerMathieu Duponchelle <mathieu@centricular.com>2018-05-09 14:46:14 +0200
commit5c450c5992ca6dc7100207560224167797fe4c13 (patch)
treeb464b93ac7d8868cb2787e1dff9b9f0f9f93d346 /gst-libs
parent54482a54d85a9f107b606ef65b06715d924b5041 (diff)
downloadgstreamer-plugins-bad-5c450c5992ca6dc7100207560224167797fe4c13.tar.gz
webrtcbin: implement support for FEC and RTX
https://bugzilla.gnome.org/show_bug.cgi?id=795044
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/webrtc/webrtc_fwd.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/gst-libs/gst/webrtc/webrtc_fwd.h b/gst-libs/gst/webrtc/webrtc_fwd.h
index 6b8364dca..be0a3c334 100644
--- a/gst-libs/gst/webrtc/webrtc_fwd.h
+++ b/gst-libs/gst/webrtc/webrtc_fwd.h
@@ -253,4 +253,15 @@ typedef enum /*< underscore_name=gst_webrtc_stats_type >*/
GST_WEBRTC_STATS_CERTIFICATE,
} GstWebRTCStatsType;
+/**
+ * GstWebRTCFECType:
+ * GST_WEBRTC_FEC_TYPE_NONE: none
+ * GST_WEBRTC_FEC_TYPE_ULP_RED: ulpfec + red
+ */
+typedef enum /*< underscore_name=gst_webrtc_fec_type >*/
+{
+ GST_WEBRTC_FEC_TYPE_NONE,
+ GST_WEBRTC_FEC_TYPE_ULP_RED,
+} GstWebRTCFECType;
+
#endif /* __GST_WEBRTC_FWD_H__ */