Add theoraparse to the docs and fix some docs.

Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
* ext/theora/theoraparse.c:
Add theoraparse to the docs and fix some docs.
This commit is contained in:
Wim Taymans 2008-05-28 16:10:20 +00:00
parent 2855fb48ad
commit 1a3053b241
5 changed files with 27 additions and 3 deletions

View file

@ -1,3 +1,11 @@
2008-05-28 Wim Taymans <wim.taymans@collabora.co.uk>
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
* ext/theora/theoraparse.c:
Add theoraparse to the docs and fix some docs.
2008-05-28 Wim Taymans <wim.taymans@collabora.co.uk>
* gst-libs/gst/cdda/gstcddabasesrc.c:

View file

@ -93,6 +93,7 @@ EXTRA_HFILES = \
$(top_srcdir)/ext/pango/gsttimeoverlay.h \
$(top_srcdir)/ext/theora/gsttheoradec.h \
$(top_srcdir)/ext/theora/gsttheoraenc.h \
$(top_srcdir)/ext/theora/gsttheoraparse.h \
$(top_srcdir)/ext/vorbis/vorbisdec.h \
$(top_srcdir)/ext/vorbis/vorbisenc.h \
$(top_srcdir)/ext/vorbis/vorbisparse.h \

View file

@ -42,6 +42,7 @@
<xi:include href="xml/element-textrender.xml" />
<xi:include href="xml/element-theoradec.xml" />
<xi:include href="xml/element-theoraenc.xml" />
<xi:include href="xml/element-theoraparse.xml" />
<xi:include href="xml/element-timeoverlay.xml" />
<xi:include href="xml/element-uridecodebin.xml" />
<xi:include href="xml/element-videorate.xml" />

View file

@ -474,6 +474,20 @@ GST_TYPE_THEORA_ENC
GstTheoraEncClass
</SECTION>
<SECTION>
<FILE>element-theoraparse</FILE>
<TITLE>theoraparse</TITLE>
GstTheoraParse
<SUBSECTION Standard>
GstTheoraParseClass
GST_THEORA_PARSE
GST_IS_THEORA_PARSE
GST_TYPE_THEORA_PARSE
gst_theora_parse_get_type
GST_THEORA_PARSE_CLASS
GST_IS_THEORA_PARSE_CLASS
</SECTION>
<SECTION>
<FILE>element-timeoverlay</FILE>
<TITLE>timeoverlay</TITLE>

View file

@ -34,7 +34,7 @@
* <para>
* This element also makes sure that the buffers that it pushes out are properly
* timestamped and that their offset and offset_end are set. The buffers that
* vorbisparse outputs have all of the metadata that oggmux expects to receive,
* theoraparse outputs have all of the metadata that oggmux expects to receive,
* which allows you to (for example) remux an ogg/theora file.
* </para>
* <para>
@ -55,7 +55,7 @@
* </para>
* <para>
* <programlisting>
* gst-launch filesrc location=video.ogg ! oggdemux ! vorbisparse \
* gst-launch filesrc location=video.ogg ! oggdemux ! theoraparse \
* ! oggmux ! filesink location=video-remuxed.ogg
* </programlisting>
* This pipeline shows remuxing. video-remuxed.ogg might not be exactly the same
@ -63,7 +63,7 @@
* </para>
* </refsect2>
*
* Last reviewed on 2006-04-01 (0.10.4.1)
* Last reviewed on 2008-05-28 (0.10.20)
*/
#ifdef HAVE_CONFIG_H