mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
docs/pwg/building-boiler.xml: Fix typos, spotted by Thijs Vermeir (#447190).
Original commit message from CVS: * docs/pwg/building-boiler.xml: Fix typos, spotted by Thijs Vermeir (#447190).
This commit is contained in:
parent
72d16840ae
commit
1b343395e7
2 changed files with 11 additions and 9 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2007-06-14 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* docs/pwg/building-boiler.xml:
|
||||||
|
Fix typos, spotted by Thijs Vermeir (#447190).
|
||||||
|
|
||||||
2007-06-13 Jan Schmidt <thaytan@mad.scientist.com>
|
2007-06-13 Jan Schmidt <thaytan@mad.scientist.com>
|
||||||
|
|
||||||
* docs/plugins/tmpl/.cvsignore:
|
* docs/plugins/tmpl/.cvsignore:
|
||||||
|
|
|
@ -77,7 +77,7 @@ U gst-template/gst-app/src/Makefile.am
|
||||||
easiest way to do this is to copy a template and add functionality
|
easiest way to do this is to copy a template and add functionality
|
||||||
according to your needs. To help you do so, there is a tool in the
|
according to your needs. To help you do so, there is a tool in the
|
||||||
<filename class="directory">./gst-plugins/tools/</filename> directory.
|
<filename class="directory">./gst-plugins/tools/</filename> directory.
|
||||||
This tool, <filename>make_element</filename>, is a command line utillity
|
This tool, <filename>make_element</filename>, is a command line utility
|
||||||
that creates the boilerplate code for you.
|
that creates the boilerplate code for you.
|
||||||
</para>
|
</para>
|
||||||
<para>
|
<para>
|
||||||
|
@ -116,10 +116,10 @@ U gst-template/gst-app/src/Makefile.am
|
||||||
</para>
|
</para>
|
||||||
<note>
|
<note>
|
||||||
<para>
|
<para>
|
||||||
It is recommened that you reate a copy of the <filename
|
It is recommended that you create a copy of the <filename
|
||||||
class="directory">gst-plugin</filename>
|
class="directory">gst-plugin</filename>
|
||||||
directory before continuing. Do not copy the <filename
|
directory before continuing. Do not copy the <filename
|
||||||
class="directory">CVS</filename> direcories though.
|
class="directory">CVS</filename> directories though.
|
||||||
</para>
|
</para>
|
||||||
</note>
|
</note>
|
||||||
</sect1>
|
</sect1>
|
||||||
|
@ -205,11 +205,8 @@ GST_BOILERPLATE (GstMyFilter, gst_my_filter, GstElement, GST_TYPE_ELEMENT);
|
||||||
<listitem><para>
|
<listitem><para>
|
||||||
A long, english, name for the element.
|
A long, english, name for the element.
|
||||||
</para></listitem><listitem><para>
|
</para></listitem><listitem><para>
|
||||||
The type of the element, as a hierarchy. The hierarchy is defined by
|
The type of the element, see the docs/design/draft-klass.txt document
|
||||||
specifying the top level category, followed by a "/", followed by the
|
in the GStreamer core source tree for details and examples.
|
||||||
next level category, etc. The type should be defined according to the
|
|
||||||
guidelines elsewhere in this document. (FIXME: write the guidelines, and
|
|
||||||
give a better reference to them)
|
|
||||||
</para></listitem><listitem><para>
|
</para></listitem><listitem><para>
|
||||||
A brief description of the purpose of the element.
|
A brief description of the purpose of the element.
|
||||||
</para></listitem><listitem><para>
|
</para></listitem><listitem><para>
|
||||||
|
@ -233,7 +230,7 @@ static const GstElementDetails my_filter_details = {
|
||||||
the <function>_base_init ()</function> function, which is part of
|
the <function>_base_init ()</function> function, which is part of
|
||||||
the GObject system. The <function>_base_init ()</function> function
|
the GObject system. The <function>_base_init ()</function> function
|
||||||
should be set for this GObject in the function where you register
|
should be set for this GObject in the function where you register
|
||||||
the type with Glib.
|
the type with GLib.
|
||||||
</para>
|
</para>
|
||||||
<programlisting><!-- example-begin boilerplate.c c -->
|
<programlisting><!-- example-begin boilerplate.c c -->
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue