mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
docs: add pcapparse to docs
This commit is contained in:
parent
4d926e3b0d
commit
277327e4e5
4 changed files with 25 additions and 0 deletions
|
@ -140,6 +140,7 @@ EXTRA_HFILES = \
|
|||
$(top_srcdir)/gst/mxf/mxfdemux.h \
|
||||
$(top_srcdir)/gst/mxf/mxfmux.h \
|
||||
$(top_srcdir)/gst/nuvdemux/gstnuvdemux.h \
|
||||
$(top_srcdir)/gst/pcapparse/gstpcapparse.h \
|
||||
$(top_srcdir)/gst/rawparse/gstaudioparse.h \
|
||||
$(top_srcdir)/gst/rawparse/gstvideoparse.h \
|
||||
$(top_srcdir)/gst/rtpmanager/gstrtpbin.h \
|
||||
|
|
|
@ -68,6 +68,7 @@
|
|||
<xi:include href="xml/element-mxfmux.xml" />
|
||||
<xi:include href="xml/element-nuvdemux.xml" />
|
||||
<xi:include href="xml/element-output-selector.xml" />
|
||||
<xi:include href="xml/element-pcapparse.xml" />
|
||||
<xi:include href="xml/element-rtpdtmfdepay.xml" />
|
||||
<xi:include href="xml/element-rtpdtmfsrc.xml" />
|
||||
<xi:include href="xml/element-rtpdtmfmux.xml" />
|
||||
|
@ -145,6 +146,7 @@
|
|||
<xi:include href="xml/plugin-neon.xml" />
|
||||
<xi:include href="xml/plugin-nsfdec.xml" />
|
||||
<xi:include href="xml/plugin-nuvdemux.xml" />
|
||||
<xi:include href="xml/plugin-pcapparse.xml" />
|
||||
<xi:include href="xml/plugin-rawparse.xml" />
|
||||
<xi:include href="xml/plugin-real.xml" />
|
||||
<xi:include href="xml/plugin-rfbsrc.xml" />
|
||||
|
|
|
@ -719,6 +719,21 @@ GST_TYPE_OUTPUT_SELECTOR
|
|||
gst_output_selector_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>element-pcapparse</FILE>
|
||||
<TITLE>pcapparse</TITLE>
|
||||
GstPcapParse
|
||||
<SUBSECTION Standard>
|
||||
GstPcapParseClass
|
||||
GST_PCAP_PARSE
|
||||
GST_PCAP_PARSE_CLASS
|
||||
GST_IS_PCAP_PARSE
|
||||
GST_IS_PCAP_PARSE_CLASS
|
||||
GST_TYPE_PCAP_PARSE
|
||||
GstPcapParseState
|
||||
gst_pcap_parse_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>element-rtpdtmfdepay</FILE>
|
||||
<TITLE>rtpdtmfdepay</TITLE>
|
||||
|
|
|
@ -45,10 +45,17 @@ typedef enum
|
|||
PCAP_PARSE_STATE_PARSING,
|
||||
} GstPcapParseState;
|
||||
|
||||
/**
|
||||
* GstPcapParse:
|
||||
*
|
||||
* GstPcapParse element.
|
||||
*/
|
||||
|
||||
struct _GstPcapParse
|
||||
{
|
||||
GstElement element;
|
||||
|
||||
/*< private >*/
|
||||
GstPad * sink_pad;
|
||||
GstPad * src_pad;
|
||||
|
||||
|
|
Loading…
Reference in a new issue