rtpmanager: place content before Since-version API marker

Avoids confusing the parser
This commit is contained in:
Reynaldo H. Verdejo Pinochet 2016-12-14 14:37:45 -08:00
parent 6c8c9a6492
commit 264be35e3c
2 changed files with 8 additions and 8 deletions

View file

@ -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),

View file

@ -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),