mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
docs: add GstFlowCombiner
This commit is contained in:
parent
0b194cf664
commit
a6d9c1a3c3
3 changed files with 21 additions and 1 deletions
|
@ -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" />
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue