docs: more updates
authorWim Taymans <wim.taymans@collabora.co.uk>
Thu, 11 Jul 2013 10:24:33 +0000 (12:24 +0200)
committerWim Taymans <wim.taymans@collabora.co.uk>
Thu, 11 Jul 2013 10:24:33 +0000 (12:24 +0200)
gst/rtsp-server/rtsp-auth.c
gst/rtsp-server/rtsp-media-factory.h
gst/rtsp-server/rtsp-media.h
gst/rtsp-server/rtsp-mount-points.h
gst/rtsp-server/rtsp-session-pool.h
gst/rtsp-server/rtsp-stream.h

index 628bc44..06f5aeb 100644 (file)
@@ -211,10 +211,9 @@ default_setup (GstRTSPAuth * auth, GstRTSPClientState * state)
 /**
  * gst_rtsp_auth_setup:
  * @auth: a #GstRTSPAuth
- * @client: the client
- * @state: TODO
+ * @state: the client state
  *
- * Add authentication tokens to @response.
+ * Add authentication tokens to @response in @state.
  *
  * Returns: FALSE if something is wrong.
  */
index ca26d26..035cbe2 100644 (file)
@@ -45,7 +45,6 @@ typedef struct _GstRTSPMediaFactoryPrivate GstRTSPMediaFactoryPrivate;
 
 /**
  * GstRTSPMediaFactory:
- * @parent: the parent GObject
  *
  * The definition and logic for constructing the pipeline for a media. The media
  * can contain multiple streams like audio and video.
index ebb7b67..d001549 100644 (file)
@@ -82,12 +82,12 @@ struct _GstRTSPMedia {
 
 /**
  * GstRTSPMediaClass:
- * @context: the main context for dispatching messages
- * @loop: the mainloop for message.
- * @thread: the thread dispatching messages.
  * @handle_message: handle a message
  * @unprepare: the default implementation sets the pipeline's state
  *             to GST_STATE_NULL and removes all elements.
+ * @convert_range: convert a range to the given unit
+ * @query_position: query the current posision in the pipeline
+ * @query_stop: query when playback will stop
  *
  * The RTSP media class
  */
index b57c041..3f9b5b7 100644 (file)
@@ -41,23 +41,18 @@ typedef struct _GstRTSPMountPointsPrivate GstRTSPMountPointsPrivate;
 
 /**
  * GstRTSPMountPoints:
- * @parent: parent GObject
- * @mounts: the mountpoints to mediafactory mapping
  *
  * Creates a #GstRTSPMediaFactory object for a given url.
  */
 struct _GstRTSPMountPoints {
   GObject       parent;
 
+  /*< private >*/
   GstRTSPMountPointsPrivate *priv;
 };
 
 /**
  * GstRTSPMountPointsClass:
- * @parent_class: parent GObject class
- * @find_factory: Create or return a previously cached #GstRTSPMediaFactory object
- *        for the given url. the default implementation will use the factory
- *        added with gst_rtsp_mount_points_add_factory().
  *
  * The class for the media mounts object.
  */
index ff077eb..5132562 100644 (file)
@@ -42,9 +42,6 @@ typedef struct _GstRTSPSessionPoolPrivate GstRTSPSessionPoolPrivate;
 
 /**
  * GstRTSPSessionPool:
- * @max_sessions: the maximum number of sessions.
- * @lock: locking the session hashtable
- * @sessions: hashtable of sessions indexed by the session id.
  *
  * An object that keeps track of the active sessions. This object is usually
  * attached to a #GstRTSPServer object to manage the sessions in that server.
index 8e5cbc5..240fc48 100644 (file)
@@ -46,13 +46,13 @@ typedef struct _GstRTSPStreamPrivate GstRTSPStreamPrivate;
 
 /**
  * GstRTSPStream:
- * @parent: the parent instance
  *
  * The definition of a media stream.
  */
 struct _GstRTSPStream {
   GObject       parent;
 
+  /*< private >*/
   GstRTSPStreamPrivate *priv;
 };