mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
gi: improve annotations
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=730953
This commit is contained in:
parent
661f4d928f
commit
d08b46f4b7
2 changed files with 8 additions and 3 deletions
|
@ -249,6 +249,12 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
|
||||||
handle_response), NULL, NULL, g_cclosure_marshal_generic,
|
handle_response), NULL, NULL, g_cclosure_marshal_generic,
|
||||||
G_TYPE_NONE, 1, GST_TYPE_RTSP_CONTEXT);
|
G_TYPE_NONE, 1, GST_TYPE_RTSP_CONTEXT);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GstRTSPClient::send-message:
|
||||||
|
* @client: The RTSP client
|
||||||
|
* @session: (type GstRtspServer.RTSPSession): The session
|
||||||
|
* @message: (type GstRtsp.RTSPMessage): The message
|
||||||
|
*/
|
||||||
gst_rtsp_client_signals[SIGNAL_SEND_MESSAGE] =
|
gst_rtsp_client_signals[SIGNAL_SEND_MESSAGE] =
|
||||||
g_signal_new ("send-message", G_TYPE_FROM_CLASS (klass),
|
g_signal_new ("send-message", G_TYPE_FROM_CLASS (klass),
|
||||||
G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_generic,
|
G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_generic,
|
||||||
|
@ -1721,8 +1727,7 @@ strip_chars (gchar * str)
|
||||||
memmove (str, s, len + 1);
|
memmove (str, s, len + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/* KeyMgmt = "KeyMgmt" ":" key-mgmt-spec 0*("," key-mgmt-spec)
|
||||||
* KeyMgmt = "KeyMgmt" ":" key-mgmt-spec 0*("," key-mgmt-spec)
|
|
||||||
* key-mgmt-spec = "prot" "=" KMPID ";" ["uri" "=" %x22 URI %x22 ";"]
|
* key-mgmt-spec = "prot" "=" KMPID ";" ["uri" "=" %x22 URI %x22 ";"]
|
||||||
*/
|
*/
|
||||||
static gboolean
|
static gboolean
|
||||||
|
|
|
@ -2364,7 +2364,7 @@ gst_rtsp_stream_remove_transport (GstRTSPStream * stream,
|
||||||
* gst_rtsp_stream_update_crypto:
|
* gst_rtsp_stream_update_crypto:
|
||||||
* @stream: a #GstRTSPStream
|
* @stream: a #GstRTSPStream
|
||||||
* @ssrc: the SSRC
|
* @ssrc: the SSRC
|
||||||
* @crypto: (transfer none) (allow none): a #GstCaps with crypto info
|
* @crypto: (transfer none) (allow-none): a #GstCaps with crypto info
|
||||||
*
|
*
|
||||||
* Update the new crypto information for @ssrc in @stream. If information
|
* Update the new crypto information for @ssrc in @stream. If information
|
||||||
* for @ssrc did not exist, it will be added. If information
|
* for @ssrc did not exist, it will be added. If information
|
||||||
|
|
Loading…
Reference in a new issue