diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2007-07-03 09:18:22 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2007-07-03 09:18:22 +0000 |
commit | 2aa5ce3111f28f30498c223eb2e8996bfe6e61c3 (patch) | |
tree | dc282275ff0282b67d955ed645e936976db09753 /ext/amrwb/gstamrwbenc.c | |
parent | ab20a46f5ad3287c8f1ea0594f899c240ac961ff (diff) | |
download | gst-plugins-bad-2aa5ce3111f28f30498c223eb2e8996bfe6e61c3.tar.gz gst-plugins-bad-2aa5ce3111f28f30498c223eb2e8996bfe6e61c3.tar.bz2 gst-plugins-bad-2aa5ce3111f28f30498c223eb2e8996bfe6e61c3.zip |
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.
Diffstat (limited to 'ext/amrwb/gstamrwbenc.c')
-rw-r--r-- | ext/amrwb/gstamrwbenc.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ext/amrwb/gstamrwbenc.c b/ext/amrwb/gstamrwbenc.c index 52f303cd..2e342d30 100644 --- a/ext/amrwb/gstamrwbenc.c +++ b/ext/amrwb/gstamrwbenc.c @@ -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 |