mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
Also document AMR-WB elements.
Original commit message from CVS: * docs/plugins/Makefile.am: * docs/plugins/gst-plugins-bad-plugins-docs.sgml: * docs/plugins/gst-plugins-bad-plugins-sections.txt: * ext/amrwb/gstamrwbdec.c: * ext/amrwb/gstamrwbenc.c: * ext/amrwb/gstamrwbparse.c: Also document AMR-WB elements.
This commit is contained in:
parent
ab20a46f5a
commit
2aa5ce3111
7 changed files with 109 additions and 4 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2007-07-03 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* docs/plugins/Makefile.am:
|
||||
* docs/plugins/gst-plugins-bad-plugins-docs.sgml:
|
||||
* docs/plugins/gst-plugins-bad-plugins-sections.txt:
|
||||
* ext/amrwb/gstamrwbdec.c:
|
||||
* ext/amrwb/gstamrwbenc.c:
|
||||
* ext/amrwb/gstamrwbparse.c:
|
||||
Also document AMR-WB elements.
|
||||
|
||||
2007-07-03 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* docs/plugins/Makefile.am:
|
||||
|
|
|
@ -89,6 +89,9 @@ EXAMPLE_CFILES = \
|
|||
$(top_srcdir)/ext/directfb/dfb-example.c
|
||||
|
||||
EXTRA_HFILES = \
|
||||
$(top_srcdir)/ext/amrwb/gstamrwbdec.h \
|
||||
$(top_srcdir)/ext/amrwb/gstamrwbenc.h \
|
||||
$(top_srcdir)/ext/amrwb/gstamrwbparse.h \
|
||||
$(top_srcdir)/ext/directfb/dfbvideosink.h \
|
||||
$(top_srcdir)/ext/jack/gstjackaudiosink.h \
|
||||
$(top_srcdir)/ext/musicbrainz/gsttrm.h \
|
||||
|
|
|
@ -12,9 +12,9 @@
|
|||
|
||||
<chapter>
|
||||
<title>gst-plugins-bad Elements</title>
|
||||
<!--xi:include href="xml/element-amrwbdec.xml" />
|
||||
<xi:include href="xml/element-amrwbdec.xml" />
|
||||
<xi:include href="xml/element-amrwbenc.xml" />
|
||||
<xi:include href="xml/element-amrwbparse.xml" /-->
|
||||
<xi:include href="xml/element-amrwbparse.xml" />
|
||||
<xi:include href="xml/element-dfbvideosink.xml" />
|
||||
<xi:include href="xml/element-equalizer-3bands.xml" />
|
||||
<xi:include href="xml/element-equalizer-10bands.xml" />
|
||||
|
|
|
@ -1,3 +1,45 @@
|
|||
<SECTION>
|
||||
<FILE>element-amrwbdec</FILE>
|
||||
<TITLE>amrwbdec</TITLE>
|
||||
GstAmrwbDec
|
||||
<SUBSECTION Standard>
|
||||
GstAmrwbDecClass
|
||||
GST_AMRWBDEC
|
||||
GST_AMRWBDEC_CLASS
|
||||
GST_IS_AMRWBDEC
|
||||
GST_IS_AMRWBDEC_CLASS
|
||||
GST_TYPE_AMRWBDEC
|
||||
gst_amrwbdec_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>element-amrwbenc</FILE>
|
||||
<TITLE>amrwbenc</TITLE>
|
||||
GstAmrwbEnc
|
||||
<SUBSECTION Standard>
|
||||
GstAmrwbEncClass
|
||||
GST_AMRWBENC
|
||||
GST_AMRWBENC_CLASS
|
||||
GST_IS_AMRWBENC
|
||||
GST_IS_AMRWBENC_CLASS
|
||||
GST_TYPE_AMRWBENC
|
||||
gst_amrwbenc_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>element-amrwbparse</FILE>
|
||||
<TITLE>amrwbparse</TITLE>
|
||||
GstAmrwbParse
|
||||
<SUBSECTION Standard>
|
||||
GstAmrwbParseClass
|
||||
GST_AMRWBPARSE
|
||||
GST_AMRWBPARSE_CLASS
|
||||
GST_IS_AMRWBPARSE
|
||||
GST_IS_AMRWBPARSE_CLASS
|
||||
GST_TYPE_AMRWBPARSE
|
||||
gst_amrwbparse_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>element-dfbvideosink</FILE>
|
||||
<TITLE>dfbvideosink</TITLE>
|
||||
|
|
|
@ -17,9 +17,22 @@
|
|||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/*
|
||||
* library can be found at http://www.penguin.cz/~utx/amr
|
||||
/**
|
||||
* SECTION:element-amrwbdec
|
||||
* @see_also: #GstAmrwbEnc, #GstAmrwbParse
|
||||
*
|
||||
* <refsect2>
|
||||
* <para>
|
||||
* This is an AMR wideband decoder based on the
|
||||
* <ulink url="http://www.penguin.cz/~utx/amr">reference codec implementation</ulink>.
|
||||
* </para>
|
||||
* <title>Example launch line</title>
|
||||
* <para>
|
||||
* <programlisting>
|
||||
* gst-launch filesrc location=abc.amr ! amrwbparse ! amrwbdec ! audioresample ! audioconvert ! alsasink
|
||||
* </programlisting>
|
||||
* </para>
|
||||
* </refsect2>
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
|
|
|
@ -17,6 +17,26 @@
|
|||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/**
|
||||
* SECTION:element-amrwbenc
|
||||
* @see_also: #GstAmrwbDec, #GstAmrwbParse
|
||||
*
|
||||
* <refsect2>
|
||||
* <para>
|
||||
* This is an AMR wideband encoder based on the
|
||||
* <ulink url="http://www.penguin.cz/~utx/amr">reference codec implementation</ulink>.
|
||||
* </para>
|
||||
* <title>Example launch line</title>
|
||||
* <para>
|
||||
* <programlisting>
|
||||
* gst-launch filesrc location=abc.wav ! wavparse ! audioresample ! audioconvert ! amrwbenc ! filesink location=abc.amr
|
||||
* </programlisting>
|
||||
* </para>
|
||||
* Please not that the above stream misses the header, that is needed to play
|
||||
* the stream.
|
||||
* </refsect2>
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
|
|
@ -17,6 +17,23 @@
|
|||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/**
|
||||
* SECTION:element-amrwbparse
|
||||
* @see_also: #GstAmrwbDec, #GstAmrwbEnc
|
||||
*
|
||||
* <refsect2>
|
||||
* <para>
|
||||
* This is an AMR wideband parser.
|
||||
* </para>
|
||||
* <title>Example launch line</title>
|
||||
* <para>
|
||||
* <programlisting>
|
||||
* gst-launch filesrc location=abc.amr ! amrwbparse ! amrwbdec ! audioresample ! audioconvert ! alsasink
|
||||
* </programlisting>
|
||||
* </para>
|
||||
* </refsect2>
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue