mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
add more elements to the docs
Original commit message from CVS: add more elements to the docs
This commit is contained in:
parent
307d58b70a
commit
9e01408713
9 changed files with 82 additions and 8 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
|||
2005-09-11 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
|
||||
* docs/plugins/gst-plugins-base-plugins-sections.txt:
|
||||
* docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
|
||||
* docs/plugins/tmpl/element-tcpserversink.sgml:
|
||||
* gst/ffmpegcolorspace/gstffmpeg.c:
|
||||
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
|
||||
* gst/videotestsrc/gstvideotestsrc.c:
|
||||
* gst/volume/gstvolume.c:
|
||||
add more elements to the docs
|
||||
|
||||
2005-09-09 Jan Schmidt <thaytan@mad.scientist.com>
|
||||
|
||||
* check/Makefile.am:
|
||||
|
|
|
@ -12,8 +12,11 @@
|
|||
|
||||
<chapter>
|
||||
<title>gst-plugins-base Elements</title>
|
||||
<xi:include href="xml/element-ffmpegcolorspace.xml" />
|
||||
<xi:include href="xml/element-multifdsink.xml" />
|
||||
<xi:include href="xml/element-tcpserversink.xml" />
|
||||
<xi:include href="xml/element-videotestsrc.xml" />
|
||||
<xi:include href="xml/element-volume.xml" />
|
||||
<!--
|
||||
<xi:include href="xml/element-gnomevfssink.xml" />
|
||||
-->
|
||||
|
|
|
@ -1,4 +1,11 @@
|
|||
<SECTION>
|
||||
<FILE>element-ffmpegcolorspace</FILE>
|
||||
GstFFMpegColorspace
|
||||
<TITLE>ffmpegcolorspace</TITLE>
|
||||
<SUBSECTION Standard>
|
||||
GstFFMpegColorspaceClass
|
||||
</SECTION>
|
||||
|
||||
<FILE>element-multifdsink</FILE>
|
||||
GstMultiFdSink
|
||||
GstMultiFdSinkFlags
|
||||
|
@ -35,6 +42,20 @@ GstGnomeVFSSink
|
|||
GstGnomeVFSSinkClass
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>element-videotestsrc</FILE>
|
||||
<TITLE>videotestsrc</TITLE>
|
||||
<SUBSECTION Standard>
|
||||
GstVideoTestSrcClass
|
||||
</SECTION>
|
||||
|
||||
|
||||
<FILE>element-volume</FILE>
|
||||
GstVolume
|
||||
<TITLE>volume</TITLE>
|
||||
<SUBSECTION Standard>
|
||||
GstVolumeClass
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>element-vorbisenc</FILE>
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<plugin>
|
||||
<name>ffmpegcolorspace</name>
|
||||
<description>colorspace conversion copied from FFMpeg</description>
|
||||
<description>colorspace conversion copied from FFMpeg 0.4.9-pre1</description>
|
||||
<filename>../../gst/ffmpegcolorspace/.libs/libgstffmpegcolorspace.so</filename>
|
||||
<basename>libgstffmpegcolorspace.so</basename>
|
||||
<version>0.4.9-pre1</version>
|
||||
<version>0.9.2.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>FFMpeg</package>
|
||||
|
|
|
@ -2,10 +2,9 @@
|
|||
tcpserversink
|
||||
|
||||
<!-- ##### SECTION Short_Description ##### -->
|
||||
Send data as a server over the network via TCP
|
||||
|
||||
|
||||
<!-- ##### SECTION Long_Description ##### -->
|
||||
<include xmlns="http://www.w3.org/2003/XInclude" href="element-tcpserversink-details.xml" />
|
||||
<para>
|
||||
|
||||
</para>
|
||||
|
|
|
@ -44,6 +44,5 @@ plugin_init (GstPlugin * plugin)
|
|||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||
GST_VERSION_MINOR,
|
||||
"ffmpegcolorspace",
|
||||
"colorspace conversion copied from FFMpeg",
|
||||
plugin_init,
|
||||
FFMPEG_VERSION, "LGPL", "FFMpeg", "http://ffmpeg.sourceforge.net/")
|
||||
"colorspace conversion copied from FFMpeg " FFMPEG_VERSION,
|
||||
plugin_init, VERSION, "LGPL", "FFMpeg", "http://ffmpeg.sourceforge.net/")
|
||||
|
|
|
@ -19,6 +19,19 @@
|
|||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/**
|
||||
* SECTION:element-ffmpegcolorspace
|
||||
*
|
||||
* <refsect2>
|
||||
* <title>Example launch line</title>
|
||||
* <para>
|
||||
* <programlisting>
|
||||
* gst-launch -v videotestsrc ! video/x-raw-yuv,format=\(fourcc\)YUY2 ! ffmpegcolorspace ! ximagesink
|
||||
* </programlisting>
|
||||
* </para>
|
||||
* </refsect2>
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
|
|
@ -18,6 +18,18 @@
|
|||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/**
|
||||
* SECTION:element-videotestsrc
|
||||
*
|
||||
* <refsect2>
|
||||
* <title>Example launch line</title>
|
||||
* <para>
|
||||
* <programlisting>
|
||||
* gst-launch -v videotestsrc pattern=snow ! ximagesink
|
||||
* </programlisting>
|
||||
* </para>
|
||||
* </refsect2>
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
|
|
|
@ -21,6 +21,21 @@
|
|||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/**
|
||||
* SECTION:element-volume
|
||||
*
|
||||
* <refsect2>
|
||||
* <title>Example launch line</title>
|
||||
* <para>
|
||||
* <programlisting>
|
||||
* gst-launch -v -m sinesrc ! volume volume=0.5 ! level ! fakesink silent=TRUE
|
||||
* </programlisting>
|
||||
* This pipeline shows that the level of sinesrc has been halved compared to
|
||||
* the same pipeline without the volume element.
|
||||
* </para>
|
||||
* </refsect2>
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue