summaryrefslogtreecommitdiff
path: root/gst-libs/gst/sctp/sctpsendmeta.h
diff options
context:
space:
mode:
authorGeorge Kiagiadakis <george.kiagiadakis@collabora.com>2015-02-04 17:12:48 +0100
committerMatthew Waters <matthew@centricular.com>2018-09-21 19:36:52 +1000
commite2f06326eac7c3c7fa9c0d5baf4bf9673fc93376 (patch)
treea251495f65b6ca099b271c607a879e015d445d71 /gst-libs/gst/sctp/sctpsendmeta.h
parent45fe050286d2228810a0dc1e19caad3e32f17765 (diff)
downloadgstreamer-plugins-bad-e2f06326eac7c3c7fa9c0d5baf4bf9673fc93376.tar.gz
Add new SCTP plugins (sctpenc/sctpdec)
https://bugzilla.gnome.org/show_bug.cgi?id=744863
Diffstat (limited to 'gst-libs/gst/sctp/sctpsendmeta.h')
-rw-r--r--gst-libs/gst/sctp/sctpsendmeta.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/gst-libs/gst/sctp/sctpsendmeta.h b/gst-libs/gst/sctp/sctpsendmeta.h
new file mode 100644
index 000000000..8a7cd0b63
--- /dev/null
+++ b/gst-libs/gst/sctp/sctpsendmeta.h
@@ -0,0 +1,65 @@
+/*
+ * Copyright (c) 2015, Collabora Ltd.
+ *
+ * Redistribution and use in source and binary forms, with or without modification,
+ * are permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this
+ * list of conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this
+ * list of conditions and the following disclaimer in the documentation and/or other
+ * materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
+ * OF SUCH DAMAGE.
+ */
+
+#ifndef __GST_SCTP_SEND_META_H__
+#define __GST_SCTP_SEND_META_H__
+
+#include <gst/gst.h>
+
+G_BEGIN_DECLS
+
+typedef enum
+{
+ GST_SCTP_SEND_META_PARTIAL_RELIABILITY_NONE,
+ GST_SCTP_SEND_META_PARTIAL_RELIABILITY_TTL,
+ GST_SCTP_SEND_META_PARTIAL_RELIABILITY_BUF,
+ GST_SCTP_SEND_META_PARTIAL_RELIABILITY_RTX
+} GstSctpSendMetaPartiallyReliability;
+
+#define GST_SCTP_SEND_META_API_TYPE (gst_sctp_send_meta_api_get_type())
+#define GST_SCTP_SEND_META_INFO (gst_sctp_send_meta_get_info())
+typedef struct _GstSctpSendMeta GstSctpSendMeta;
+
+struct _GstSctpSendMeta
+{
+ GstMeta meta;
+
+ guint32 ppid;
+ gboolean ordered;
+ GstSctpSendMetaPartiallyReliability pr;
+ guint32 pr_param;
+};
+
+GType gst_sctp_send_meta_api_get_type (void);
+const GstMetaInfo *gst_sctp_send_meta_get_info (void);
+GstSctpSendMeta *gst_sctp_buffer_add_send_meta (GstBuffer * buffer,
+ guint32 ppid, gboolean ordered, GstSctpSendMetaPartiallyReliability pr,
+ guint32 pr_param);
+
+#define gst_sctp_buffer_get_send_meta(b) ((GstSctpSendMeta *)gst_buffer_get_meta((b), GST_SCTP_SEND_META_TYPE))
+
+G_END_DECLS
+
+#endif /* __GST_SCTP_SEND_META_H__ */