docs: add GstFlowCombiner

This commit is contained in:
Tim-Philipp Müller 2014-05-27 10:05:51 +01:00
parent 0b194cf664
commit a6d9c1a3c3
3 changed files with 21 additions and 1 deletions

View file

@ -44,6 +44,7 @@
<xi:include href="xml/gstbytereader.xml" />
<xi:include href="xml/gstbytewriter.xml" />
<xi:include href="xml/gstcollectpads.xml" />
<xi:include href="xml/gstflowcombiner.xml" />
<xi:include href="xml/gsttypefindhelper.xml" />
<xi:include href="xml/gstdataqueue.xml" />
<xi:include href="xml/gstqueuearray.xml" />

View file

@ -759,6 +759,19 @@ gst_collect_pads_get_type
<SUBSECTION Private>
</SECTION>
<SECTION>
<FILE>gstflowcombiner</FILE>
<TITLE>GstFlowCombiner</TITLE>
<INCLUDE>gst/base/gstflowcombiner.h</INCLUDE>
gst_flow_combiner_new
gst_flow_combiner_free
gst_flow_combiner_update_flow
gst_flow_combiner_add_pad
gst_flow_combiner_remove_pad
<SUBSECTION Standard>
<SUBSECTION Private>
</SECTION>
<SECTION>
<FILE>gstpushsrc</FILE>
<TITLE>GstPushSrc</TITLE>

View file

@ -1,5 +1,4 @@
/* GStreamer
* Copyright
*
* Copyright (C) 2014 Samsung Electronics. All rights reserved.
* Author: Thiago Santos <ts.santos@sisa.samsung.com>
@ -31,6 +30,13 @@
G_BEGIN_DECLS
/**
* GstFlowCombiner:
*
* Opaque helper structure to aggregate flow returns.
*
* Since: 1.4
*/
typedef struct _GstFlowCombiner GstFlowCombiner;
GstFlowCombiner * gst_flow_combiner_new (void);