mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-24 08:08:22 +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 = \
|
EXTRA_HFILES = \
|
||||||
$(top_srcdir)/plugins/elements/gstcapsfilter.h \
|
$(top_srcdir)/plugins/elements/gstcapsfilter.h \
|
||||||
|
$(top_srcdir)/plugins/elements/gstdataurisrc.h \
|
||||||
$(top_srcdir)/plugins/elements/gstdownloadbuffer.h \
|
$(top_srcdir)/plugins/elements/gstdownloadbuffer.h \
|
||||||
$(top_srcdir)/plugins/elements/gstfakesrc.h \
|
$(top_srcdir)/plugins/elements/gstfakesrc.h \
|
||||||
$(top_srcdir)/plugins/elements/gstfakesink.h \
|
$(top_srcdir)/plugins/elements/gstfakesink.h \
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
<title>gstreamer Elements</title>
|
<title>gstreamer Elements</title>
|
||||||
<xi:include href="xml/element-capsfilter.xml" />
|
<xi:include href="xml/element-capsfilter.xml" />
|
||||||
<xi:include href="xml/element-concat.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-downloadbuffer.xml" />
|
||||||
<xi:include href="xml/element-fakesink.xml" />
|
<xi:include href="xml/element-fakesink.xml" />
|
||||||
<xi:include href="xml/element-fakesrc.xml" />
|
<xi:include href="xml/element-fakesrc.xml" />
|
||||||
|
|
|
@ -31,6 +31,22 @@ GST_TYPE_CONCAT
|
||||||
gst_concat_get_type
|
gst_concat_get_type
|
||||||
</SECTION>
|
</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>
|
<SECTION>
|
||||||
<FILE>element-downloadbuffer</FILE>
|
<FILE>element-downloadbuffer</FILE>
|
||||||
<TITLE>downloadbuffer</TITLE>
|
<TITLE>downloadbuffer</TITLE>
|
||||||
|
|
|
@ -1088,6 +1088,16 @@
|
||||||
<DEFAULT>No state change errors</DEFAULT>
|
<DEFAULT>No state change errors</DEFAULT>
|
||||||
</ARG>
|
</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>
|
<ARG>
|
||||||
<NAME>GstCapsFilter::caps</NAME>
|
<NAME>GstCapsFilter::caps</NAME>
|
||||||
<TYPE>GstCaps*</TYPE>
|
<TYPE>GstCaps*</TYPE>
|
||||||
|
@ -1218,3 +1228,13 @@
|
||||||
<DEFAULT>TRUE</DEFAULT>
|
<DEFAULT>TRUE</DEFAULT>
|
||||||
</ARG>
|
</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
|
GstFdSink
|
||||||
GstFileSink
|
GstFileSink
|
||||||
GstBaseSrc
|
GstBaseSrc
|
||||||
|
GstDataURISrc
|
||||||
GstFakeSrc
|
GstFakeSrc
|
||||||
GstFileSrc
|
GstFileSrc
|
||||||
GstPushSrc
|
GstPushSrc
|
||||||
|
@ -39,6 +40,7 @@ GObject
|
||||||
GstPlugin
|
GstPlugin
|
||||||
GstPluginFeature
|
GstPluginFeature
|
||||||
GstDeviceProviderFactory
|
GstDeviceProviderFactory
|
||||||
|
GstDynamicTypeFactory
|
||||||
GstElementFactory
|
GstElementFactory
|
||||||
GstTracerFactory
|
GstTracerFactory
|
||||||
GstTypeFindFactory
|
GstTypeFindFactory
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
GstBin GstChildProxy
|
GstBin GstChildProxy
|
||||||
|
GstDataURISrc GstURIHandler
|
||||||
GstFdSink GstURIHandler
|
GstFdSink GstURIHandler
|
||||||
GstFdSrc GstURIHandler
|
GstFdSrc GstURIHandler
|
||||||
GstFileSink GstURIHandler
|
GstFileSink GstURIHandler
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
<description>GStreamer core elements</description>
|
<description>GStreamer core elements</description>
|
||||||
<filename>../../plugins/elements/.libs/libgstcoreelements.so</filename>
|
<filename>../../plugins/elements/.libs/libgstcoreelements.so</filename>
|
||||||
<basename>libgstcoreelements.so</basename>
|
<basename>libgstcoreelements.so</basename>
|
||||||
<version>1.10.0</version>
|
<version>1.11.0.1</version>
|
||||||
<license>LGPL</license>
|
<license>LGPL</license>
|
||||||
<source>gstreamer</source>
|
<source>gstreamer</source>
|
||||||
<package>GStreamer source release</package>
|
<package>GStreamer git</package>
|
||||||
<origin>Unknown package origin</origin>
|
<origin>Unknown package origin</origin>
|
||||||
<elements>
|
<elements>
|
||||||
<element>
|
<element>
|
||||||
|
@ -51,6 +51,21 @@
|
||||||
</caps>
|
</caps>
|
||||||
</pads>
|
</pads>
|
||||||
</element>
|
</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>
|
<element>
|
||||||
<name>downloadbuffer</name>
|
<name>downloadbuffer</name>
|
||||||
<longname>DownloadBuffer</longname>
|
<longname>DownloadBuffer</longname>
|
||||||
|
|
Loading…
Reference in a new issue