rtsp-*: Fix type name typos in comments

* rtsp-auth: Refer to GstRTSPToken, not GstRTSPtoken
  * rtsp-auth: Refer to part of constant name as text
  * rtsp-auth/-permissions/-token: Refer to Permissions not Permission
  * rtsp-session-media: Fix GstRTSPSessionMedia typo
  * rtsp-stream: Fix typo when refering to GstBin

https://bugzilla.gnome.org/show_bug.cgi?id=714988
This commit is contained in:
Sebastian Rasmussen 2013-11-22 03:10:01 +01:00 committed by Tim-Philipp Müller
parent 3052b28859
commit d1a2853659
5 changed files with 6 additions and 6 deletions

View file

@ -19,7 +19,7 @@
/** /**
* SECTION:rtsp-auth * SECTION:rtsp-auth
* @short_description: Authentication and authorization * @short_description: Authentication and authorization
* @see_also: #GstRTSPPermission, #GstRTSPtoken * @see_also: #GstRTSPPermissions, #GstRTSPToken
* *
* The #GstRTSPAuth object is responsible for checking if the current user is * The #GstRTSPAuth object is responsible for checking if the current user is
* allowed to perform requested actions. The default implementation has some * allowed to perform requested actions. The default implementation has some
@ -30,7 +30,7 @@
* *
* The RTSP server will call gst_rtsp_auth_check() with a string describing the * The RTSP server will call gst_rtsp_auth_check() with a string describing the
* check to perform. The possible checks are prefixed with * check to perform. The possible checks are prefixed with
* #GST_RTSP_AUTH_CHECK_*. Depending on the check, the default implementation * GST_RTSP_AUTH_CHECK_*. Depending on the check, the default implementation
* will use the current #GstRTSPToken, #GstRTSPContext and * will use the current #GstRTSPToken, #GstRTSPContext and
* #GstRTSPPermissions on the object to check if an operation is allowed. * #GstRTSPPermissions on the object to check if an operation is allowed.
* *

View file

@ -21,7 +21,7 @@
* @short_description: Roles and associated permissions * @short_description: Roles and associated permissions
* @see_also: #GstRTSPToken, #GstRTSPAuth * @see_also: #GstRTSPToken, #GstRTSPAuth
* *
* The #GstRTSPPermission object contains an array of roles and associated * The #GstRTSPPermissions object contains an array of roles and associated
* permissions. The roles are represented with a string and the permissions with * permissions. The roles are represented with a string and the permissions with
* a generic #GstStructure. * a generic #GstStructure.
* *

View file

@ -125,7 +125,7 @@ free_session_media (gpointer data)
* @path: the path * @path: the path
* @media: the #GstRTSPMedia * @media: the #GstRTSPMedia
* *
* Create a new #GstRTPSessionMedia that manages the streams * Create a new #GstRTSPSessionMedia that manages the streams
* in @media for @path. @media should be prepared. * in @media for @path. @media should be prepared.
* *
* Ownership is taken of @media. * Ownership is taken of @media.

View file

@ -1348,7 +1348,7 @@ static GstAppSinkCallbacks sink_cb = {
* @rtpbin: a rtpbin element in @bin * @rtpbin: a rtpbin element in @bin
* @state: the target state of the new elements * @state: the target state of the new elements
* *
* Join the #Gstbin @bin that contains the element @rtpbin. * Join the #GstBin @bin that contains the element @rtpbin.
* *
* @stream will link to @rtpbin, which must be inside @bin. The elements * @stream will link to @rtpbin, which must be inside @bin. The elements
* added to @bin will be set to the state given in @state. * added to @bin will be set to the state given in @state.

View file

@ -19,7 +19,7 @@
/** /**
* SECTION:rtsp-token * SECTION:rtsp-token
* @short_description: Roles and permissions for a client * @short_description: Roles and permissions for a client
* @see_also: #GstRTSPClient, #GstRTSPPermission, #GstRTSPAuth * @see_also: #GstRTSPClient, #GstRTSPPermissions, #GstRTSPAuth
* *
* A #GstRTSPToken contains the permissions and roles of the user * A #GstRTSPToken contains the permissions and roles of the user
* performing the current request. A token is usually created when a user is * performing the current request. A token is usually created when a user is