summaryrefslogtreecommitdiff
path: root/libs/gst/base/gstflowcombiner.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/gst/base/gstflowcombiner.h')
-rw-r--r--libs/gst/base/gstflowcombiner.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/libs/gst/base/gstflowcombiner.h b/libs/gst/base/gstflowcombiner.h
index 3b04b2cd4..bd06da8fc 100644
--- a/libs/gst/base/gstflowcombiner.h
+++ b/libs/gst/base/gstflowcombiner.h
@@ -27,6 +27,7 @@
#include <glib.h>
#include <gst/gst.h>
+#include <gst/base/base-prelude.h>
G_BEGIN_DECLS
@@ -41,37 +42,37 @@ G_BEGIN_DECLS
*/
typedef struct _GstFlowCombiner GstFlowCombiner;
-GST_EXPORT
+GST_BASE_API
GstFlowCombiner * gst_flow_combiner_new (void);
-GST_EXPORT
+GST_BASE_API
GstFlowCombiner * gst_flow_combiner_ref (GstFlowCombiner * combiner);
-GST_EXPORT
+GST_BASE_API
void gst_flow_combiner_unref (GstFlowCombiner * combiner);
-GST_EXPORT
+GST_BASE_API
void gst_flow_combiner_free (GstFlowCombiner * combiner);
-GST_EXPORT
+GST_BASE_API
GstFlowReturn gst_flow_combiner_update_flow (GstFlowCombiner * combiner, GstFlowReturn fret);
-GST_EXPORT
+GST_BASE_API
GstFlowReturn gst_flow_combiner_update_pad_flow (GstFlowCombiner * combiner, GstPad * pad,
GstFlowReturn fret);
-GST_EXPORT
+GST_BASE_API
void gst_flow_combiner_add_pad (GstFlowCombiner * combiner, GstPad * pad);
-GST_EXPORT
+GST_BASE_API
void gst_flow_combiner_remove_pad (GstFlowCombiner * combiner, GstPad * pad);
-GST_EXPORT
+GST_BASE_API
void gst_flow_combiner_clear (GstFlowCombiner * combiner);
-GST_EXPORT
+GST_BASE_API
void gst_flow_combiner_reset (GstFlowCombiner * combiner);
-GST_EXPORT
+GST_BASE_API
GType gst_flow_combiner_get_type (void);
#ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC