mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-09 00:45:56 +00:00
docs: add dataurisrc to docs and update
https://bugzilla.gnome.org/show_bug.cgi?id=774527
This commit is contained in:
parent
0b6c1d1ddb
commit
d6ec58f787
7 changed files with 58 additions and 2 deletions
|
@ -55,6 +55,7 @@ IGNORE_CFILES =
|
|||
|
||||
EXTRA_HFILES = \
|
||||
$(top_srcdir)/plugins/elements/gstcapsfilter.h \
|
||||
$(top_srcdir)/plugins/elements/gstdataurisrc.h \
|
||||
$(top_srcdir)/plugins/elements/gstdownloadbuffer.h \
|
||||
$(top_srcdir)/plugins/elements/gstfakesrc.h \
|
||||
$(top_srcdir)/plugins/elements/gstfakesink.h \
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
<title>gstreamer Elements</title>
|
||||
<xi:include href="xml/element-capsfilter.xml" />
|
||||
<xi:include href="xml/element-concat.xml" />
|
||||
<xi:include href="xml/element-dataurisrc.xml" />
|
||||
<xi:include href="xml/element-downloadbuffer.xml" />
|
||||
<xi:include href="xml/element-fakesink.xml" />
|
||||
<xi:include href="xml/element-fakesrc.xml" />
|
||||
|
|
|
@ -31,6 +31,22 @@ GST_TYPE_CONCAT
|
|||
gst_concat_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>element-dataurisrc</FILE>
|
||||
<TITLE>dataurisrc</TITLE>
|
||||
GstDataURISrc
|
||||
<SUBSECTION Standard>
|
||||
GstDataURISrcClass
|
||||
GST_DATA_URI_SRC
|
||||
GST_DATA_URI_SRC_CAST
|
||||
GST_IS_DATA_URI_SRC
|
||||
GST_DATA_URI_SRC_CLASS
|
||||
GST_IS_DATA_URI_SRC_CLASS
|
||||
GST_TYPE_DATA_URI_SRC
|
||||
<SUBSECTION Private>
|
||||
gst_data_uri_src_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>element-downloadbuffer</FILE>
|
||||
<TITLE>downloadbuffer</TITLE>
|
||||
|
|
|
@ -1088,6 +1088,16 @@
|
|||
<DEFAULT>No state change errors</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstFakeSink::drop-out-of-segment</NAME>
|
||||
<TYPE>gboolean</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Drop out-of-segment buffers</NICK>
|
||||
<BLURB>Drop and don't render / hand off out-of-segment buffers.</BLURB>
|
||||
<DEFAULT>TRUE</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstCapsFilter::caps</NAME>
|
||||
<TYPE>GstCaps*</TYPE>
|
||||
|
@ -1218,3 +1228,13 @@
|
|||
<DEFAULT>TRUE</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstDataURISrc::uri</NAME>
|
||||
<TYPE>gchar*</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>URI</NICK>
|
||||
<BLURB>URI that should be used.</BLURB>
|
||||
<DEFAULT>NULL</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
|
|
|
@ -13,6 +13,7 @@ GObject
|
|||
GstFdSink
|
||||
GstFileSink
|
||||
GstBaseSrc
|
||||
GstDataURISrc
|
||||
GstFakeSrc
|
||||
GstFileSrc
|
||||
GstPushSrc
|
||||
|
@ -39,6 +40,7 @@ GObject
|
|||
GstPlugin
|
||||
GstPluginFeature
|
||||
GstDeviceProviderFactory
|
||||
GstDynamicTypeFactory
|
||||
GstElementFactory
|
||||
GstTracerFactory
|
||||
GstTypeFindFactory
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
GstBin GstChildProxy
|
||||
GstDataURISrc GstURIHandler
|
||||
GstFdSink GstURIHandler
|
||||
GstFdSrc GstURIHandler
|
||||
GstFileSink GstURIHandler
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>GStreamer core elements</description>
|
||||
<filename>../../plugins/elements/.libs/libgstcoreelements.so</filename>
|
||||
<basename>libgstcoreelements.so</basename>
|
||||
<version>1.10.0</version>
|
||||
<version>1.11.0.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gstreamer</source>
|
||||
<package>GStreamer source release</package>
|
||||
<package>GStreamer git</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
@ -51,6 +51,21 @@
|
|||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
<element>
|
||||
<name>dataurisrc</name>
|
||||
<longname>data: URI source element</longname>
|
||||
<class>Source</class>
|
||||
<description>Handles data: uris</description>
|
||||
<author>Philippe Normand <pnormand@igalia.com>, Sebastian Dröge <sebastian.droege@collabora.co.uk></author>
|
||||
<pads>
|
||||
<caps>
|
||||
<name>src</name>
|
||||
<direction>source</direction>
|
||||
<presence>always</presence>
|
||||
<details>ANY</details>
|
||||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
<element>
|
||||
<name>downloadbuffer</name>
|
||||
<longname>DownloadBuffer</longname>
|
||||
|
|
Loading…
Reference in a new issue