mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
docs: add docs for mp3parse
This commit is contained in:
parent
848b9dcf41
commit
22dcc68a62
4 changed files with 32 additions and 0 deletions
|
@ -95,6 +95,7 @@ EXTRA_HFILES = \
|
|||
$(top_srcdir)/ext/twolame/gsttwolame.h \
|
||||
$(top_srcdir)/ext/x264/gstx264enc.h \
|
||||
$(top_srcdir)/gst/asfdemux/gstrtspwms.h \
|
||||
$(top_srcdir)/gst/mpegaudioparse/gstmpegaudioparse.h \
|
||||
$(top_srcdir)/gst/mpegaudioparse/gstxingmux.h \
|
||||
$(top_srcdir)/gst/realmedia/rademux.h \
|
||||
$(top_srcdir)/gst/realmedia/rdtmanager.h \
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
<xi:include href="xml/element-lame.xml" />
|
||||
<xi:include href="xml/element-lamemp3enc.xml" />
|
||||
<xi:include href="xml/element-mad.xml" />
|
||||
<xi:include href="xml/element-mp3parse.xml" />
|
||||
<xi:include href="xml/element-rademux.xml" />
|
||||
<xi:include href="xml/element-rdtmanager.xml" />
|
||||
<xi:include href="xml/element-rtspreal.xml" />
|
||||
|
|
|
@ -110,6 +110,22 @@ GST_TYPE_MAD
|
|||
gst_mad_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>element-mp3parse</FILE>
|
||||
<TITLE>mp3parse</TITLE>
|
||||
GstMPEGAudioParse
|
||||
<SUBSECTION Standard>
|
||||
GstMPEGAudioParseClass
|
||||
MPEGAudioPendingAccurateSeek
|
||||
MPEGAudioSeekEntry
|
||||
GST_MP3PARSE
|
||||
GST_MP3PARSE_CLASS
|
||||
GST_IS_MP3PARSE
|
||||
GST_IS_MP3PARSE_CLASS
|
||||
GST_TYPE_MP3PARSE
|
||||
gst_mp3parse_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>element-rademux</FILE>
|
||||
<TITLE>rademux</TITLE>
|
||||
|
|
|
@ -18,6 +18,20 @@
|
|||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/**
|
||||
* SECTION:element-mp3parse
|
||||
*
|
||||
* Parses and frames mpeg1 audio streams. Provides seeking.
|
||||
*
|
||||
* <refsect2>
|
||||
* <title>Example launch line</title>
|
||||
* |[
|
||||
* gst-launch filesrc location=test.mp3 ! mp3parse ! autoaudiosink
|
||||
* ]|
|
||||
* </refsect2>
|
||||
*/
|
||||
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue