mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
rtpmanager: place content before Since-version API marker
Avoids confusing the parser
This commit is contained in:
parent
6c8c9a6492
commit
264be35e3c
2 changed files with 8 additions and 8 deletions
|
@ -2296,9 +2296,9 @@ gst_rtp_bin_class_init (GstRtpBinClass * klass)
|
|||
* @session: the session
|
||||
* @ssrc: the sender SSRC
|
||||
*
|
||||
* Since: 1.8
|
||||
*
|
||||
* Notify of a new sender SSRC that entered @session.
|
||||
*
|
||||
* Since: 1.8
|
||||
*/
|
||||
gst_rtp_bin_signals[SIGNAL_ON_NEW_SENDER_SSRC] =
|
||||
g_signal_new ("on-new-sender-ssrc", G_TYPE_FROM_CLASS (klass),
|
||||
|
@ -2311,9 +2311,9 @@ gst_rtp_bin_class_init (GstRtpBinClass * klass)
|
|||
* @session: the session
|
||||
* @ssrc: the sender SSRC
|
||||
*
|
||||
* Since: 1.8
|
||||
*
|
||||
* Notify of a sender SSRC that is active, i.e., sending RTCP.
|
||||
*
|
||||
* Since: 1.8
|
||||
*/
|
||||
gst_rtp_bin_signals[SIGNAL_ON_SENDER_SSRC_ACTIVE] =
|
||||
g_signal_new ("on-sender-ssrc-active", G_TYPE_FROM_CLASS (klass),
|
||||
|
|
|
@ -622,9 +622,9 @@ gst_rtp_session_class_init (GstRtpSessionClass * klass)
|
|||
* @sess: the object which received the signal
|
||||
* @ssrc: the sender SSRC
|
||||
*
|
||||
* Since: 1.8
|
||||
*
|
||||
* Notify of a new sender SSRC that entered @session.
|
||||
*
|
||||
* Since: 1.8
|
||||
*/
|
||||
gst_rtp_session_signals[SIGNAL_ON_NEW_SENDER_SSRC] =
|
||||
g_signal_new ("on-new-sender-ssrc", G_TYPE_FROM_CLASS (klass),
|
||||
|
@ -636,9 +636,9 @@ gst_rtp_session_class_init (GstRtpSessionClass * klass)
|
|||
* @sess: the object which received the signal
|
||||
* @ssrc: the sender SSRC
|
||||
*
|
||||
* Since: 1.8
|
||||
*
|
||||
* Notify of a sender SSRC that is active, i.e., sending RTCP.
|
||||
*
|
||||
* Since: 1.8
|
||||
*/
|
||||
gst_rtp_session_signals[SIGNAL_ON_SENDER_SSRC_ACTIVE] =
|
||||
g_signal_new ("on-sender-ssrc-active", G_TYPE_FROM_CLASS (klass),
|
||||
|
|
Loading…
Reference in a new issue