mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
docs: add sbcparse and rtpsbcpay to plugin docs
This commit is contained in:
parent
9f7a949773
commit
f307c6d491
6 changed files with 83 additions and 0 deletions
|
@ -129,6 +129,7 @@
|
|||
<xi:include href="xml/element-rtpdec.xml" />
|
||||
<xi:include href="xml/element-rtpj2kpay.xml" />
|
||||
<xi:include href="xml/element-rtpjpegpay.xml" />
|
||||
<xi:include href="xml/element-rtpsbcpay.xml" />
|
||||
<xi:include href="xml/element-rtspsrc.xml" />
|
||||
<xi:include href="xml/element-rtpbin.xml" />
|
||||
<xi:include href="xml/element-rtpdtmfmux.xml" />
|
||||
|
@ -137,6 +138,7 @@
|
|||
<xi:include href="xml/element-rtpptdemux.xml" />
|
||||
<xi:include href="xml/element-rtpsession.xml" />
|
||||
<xi:include href="xml/element-rtpssrcdemux.xml" />
|
||||
<xi:include href="xml/element-sbcparse.xml" />
|
||||
<xi:include href="xml/element-scaletempo.xml" />
|
||||
<xi:include href="xml/element-shagadelictv.xml" />
|
||||
<xi:include href="xml/element-shapewipe.xml" />
|
||||
|
|
|
@ -1601,6 +1601,20 @@ gst_rtp_jpeg_pay_plugin_init
|
|||
gst_rtp_jpeg_pay_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>element-rtpsbcpay</FILE>
|
||||
<TITLE>rtpsbcpay</TITLE>
|
||||
GstRtpSBCPay
|
||||
<SUBSECTION Standard>
|
||||
GstRtpSBCPayClass
|
||||
GST_RTP_SBC_PAY
|
||||
GST_RTP_SBC_PAY_CLASS
|
||||
GST_IS_RTP_SBC_PAY
|
||||
GST_IS_RTP_SBC_PAY_CLASS
|
||||
GST_TYPE_RTP_SBC_PAY
|
||||
gst_rtp_sbc_pay_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>element-rtspsrc</FILE>
|
||||
<TITLE>rtspsrc</TITLE>
|
||||
|
@ -1627,6 +1641,20 @@ GST_RTSP_STREAM_UNLOCK
|
|||
gst_rtspsrc_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>element-sbcparse</FILE>
|
||||
<TITLE>sbcparse</TITLE>
|
||||
GstSbcParse
|
||||
<SUBSECTION Standard>
|
||||
GstSbcParseClass
|
||||
GST_SBC_PARSE
|
||||
GST_SBC_PARSE_CLASS
|
||||
GST_IS_SBC_PARSE
|
||||
GST_IS_SBC_PARSE_CLASS
|
||||
GST_TYPE_SBC_PARSE
|
||||
gst_sbc_parse_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>element-shapewipe</FILE>
|
||||
<TITLE>shapewipe</TITLE>
|
||||
|
|
|
@ -23508,3 +23508,12 @@
|
|||
<DEFAULT>-1</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstRtpSBCPay::min-frames</NAME>
|
||||
<TYPE>gint</TYPE>
|
||||
<RANGE>>= G_MAXULONG</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>minimum frame number</NICK>
|
||||
<BLURB>Minimum quantity of frames to send in one packet (-1 for maximum allowed by the mtu).</BLURB>
|
||||
<DEFAULT>0</DEFAULT>
|
||||
</ARG>
|
||||
|
|
|
@ -38,6 +38,7 @@ GObject
|
|||
GstDcaParse
|
||||
GstFlacParse
|
||||
GstMpegAudioParse
|
||||
GstSbcParse
|
||||
GstWavpackParse
|
||||
GstBaseSink
|
||||
GstAudioBaseSink
|
||||
|
@ -238,6 +239,7 @@ GObject
|
|||
GstRtpMP4GPay
|
||||
GstRtpMP4VPay
|
||||
GstRtpMPAPay
|
||||
GstRtpSBCPay
|
||||
GstRtpSPEEXPay
|
||||
GstRtpTheoraPay
|
||||
GstRtpVP8Pay
|
||||
|
|
|
@ -135,6 +135,27 @@
|
|||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
<element>
|
||||
<name>sbcparse</name>
|
||||
<longname>SBC audio parser</longname>
|
||||
<class>Codec/Parser/Audio</class>
|
||||
<description>Parses an SBC bluetooth audio stream</description>
|
||||
<author>Tim-Philipp Müller <tim.muller@collabora.co.uk></author>
|
||||
<pads>
|
||||
<caps>
|
||||
<name>sink</name>
|
||||
<direction>sink</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-sbc</details>
|
||||
</caps>
|
||||
<caps>
|
||||
<name>src</name>
|
||||
<direction>source</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-sbc, parsed=(boolean)true, channels=(int)[ 1, 2 ], rate=(int){ 16000, 32000, 44100, 48000 }</details>
|
||||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
<element>
|
||||
<name>wavpackparse</name>
|
||||
<longname>Wavpack audio stream parser</longname>
|
||||
|
|
|
@ -1206,6 +1206,27 @@
|
|||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
<element>
|
||||
<name>rtpsbcpay</name>
|
||||
<longname>RTP packet payloader</longname>
|
||||
<class>Codec/Payloader/Network</class>
|
||||
<description>Payload SBC audio as RTP packets</description>
|
||||
<author>Thiago Sousa Santos <thiagoss@lcc.ufcg.edu.br></author>
|
||||
<pads>
|
||||
<caps>
|
||||
<name>sink</name>
|
||||
<direction>sink</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-sbc, rate=(int){ 16000, 32000, 44100, 48000 }, channels=(int)[ 1, 2 ], mode=(string){ mono, dual, stereo, joint }, blocks=(int){ 4, 8, 12, 16 }, subbands=(int){ 4, 8 }, allocation=(string){ snr, loudness }, bitpool=(int)[ 2, 64 ]</details>
|
||||
</caps>
|
||||
<caps>
|
||||
<name>src</name>
|
||||
<direction>source</direction>
|
||||
<presence>always</presence>
|
||||
<details>application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], clock-rate=(int){ 16000, 32000, 44100, 48000 }, encoding-name=(string)SBC</details>
|
||||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
<element>
|
||||
<name>rtpsirendepay</name>
|
||||
<longname>RTP Siren packet depayloader</longname>
|
||||
|
|
Loading…
Reference in a new issue