docs: Generate docs for GstRTSPAddressPool

This commit is contained in:
Olivier Crête 2013-02-14 13:38:07 -05:00 committed by Wim Taymans
parent 773c48e22f
commit f0ab7ce1bf
4 changed files with 28 additions and 0 deletions

View file

@ -25,6 +25,7 @@
<xi:include href="xml/rtsp-server.xml"/>
<xi:include href="xml/rtsp-session-pool.xml"/>
<xi:include href="xml/rtsp-session.xml"/>
<xi:include href="xml/rtsp-address-pool.xml"/>
</chapter>
<!-- <chapter> -->

View file

@ -353,3 +353,25 @@ GST_TYPE_RTSP_STREAM_TRANSPORT
gst_rtsp_stream_transport_get_type
</SECTION>
<SECTION>
<FILE>rtsp-address-pool</FILE>
<TITLE>GstRTSPAddressPool</TITLE>
GstRTSPAddressPool
gst_rtsp_address_pool_new
gst_rtsp_address_pool_add_range
gst_rtsp_address_pool_clear
gst_rtsp_address_pool_dump
gst_rtsp_address_pool_acquire_address
gst_rtsp_address_pool_reserve_address
<SUBSECTION Standard>
GstRTSPAddressPoolClass
GstRTSPAddressPoolPrivate
gst_rtsp_address_get_type
gst_rtsp_address_pool_get_type
<SUBSECTION Private>
GstRTSPAddress
GstRTSPAddressClass
GstRTSPAddressFlags
gst_rtsp_address_copy
gst_rtsp_address_free
</SECTION>

View file

@ -372,6 +372,8 @@ split_range (GstRTSPAddressPool * pool, AddrRange * range, guint skip_addr,
* allocation. @n_ports consecutive ports will be allocated of which the first
* one can be found in @port.
*
* This function should only be used internally.
*
* Returns: a #GstRTSPAddress that should be freed with gst_rtsp_address_free
* after use or %NULL when no address could be acquired.
*/
@ -540,6 +542,8 @@ gst_rtsp_address_pool_dump (GstRTSPAddressPool * pool)
* ports will be allocated of which the first one can be found in
* @port.
*
* This function should only be used internally.
*
* Returns: a #GstRTSPAddress that should be freed with gst_rtsp_address_free
* after use or %NULL when no address could be acquired.
*/

View file

@ -67,6 +67,7 @@ typedef enum {
* GstRTSPAddressPool:
* @parent: the parent GObject
*
* An address pool, all member are prive
*/
struct _GstRTSPAddressPool {
GObject parent;