mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
rtsp-session: Butcher the file to please gst-indent in the CI
This should be reverted once the CI has an updated gst-indent.
This commit is contained in:
parent
75b03ddf5e
commit
73b4929803
1 changed files with 5 additions and 6 deletions
|
@ -717,8 +717,7 @@ gst_rtsp_session_next_timeout_usec (GstRTSPSession * session, gint64 now)
|
||||||
* Deprecated: Use gst_rtsp_session_next_timeout_usec() instead.
|
* Deprecated: Use gst_rtsp_session_next_timeout_usec() instead.
|
||||||
*/
|
*/
|
||||||
#ifndef GST_REMOVE_DEPRECATED
|
#ifndef GST_REMOVE_DEPRECATED
|
||||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS gint
|
||||||
gint
|
|
||||||
gst_rtsp_session_next_timeout (GstRTSPSession * session, GTimeVal * now)
|
gst_rtsp_session_next_timeout (GstRTSPSession * session, GTimeVal * now)
|
||||||
{
|
{
|
||||||
GstRTSPSessionPrivate *priv;
|
GstRTSPSessionPrivate *priv;
|
||||||
|
@ -756,9 +755,9 @@ gst_rtsp_session_next_timeout (GstRTSPSession * session, GTimeVal * now)
|
||||||
|
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
G_GNUC_END_IGNORE_DEPRECATIONS
|
G_GNUC_END_IGNORE_DEPRECATIONS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gst_rtsp_session_is_expired_usec:
|
* gst_rtsp_session_is_expired_usec:
|
||||||
* @session: a #GstRTSPSession
|
* @session: a #GstRTSPSession
|
||||||
|
@ -768,7 +767,7 @@ G_GNUC_END_IGNORE_DEPRECATIONS
|
||||||
*
|
*
|
||||||
* Returns: %TRUE if @session timed out
|
* Returns: %TRUE if @session timed out
|
||||||
*/
|
*/
|
||||||
gboolean
|
gboolean
|
||||||
gst_rtsp_session_is_expired_usec (GstRTSPSession * session, gint64 now)
|
gst_rtsp_session_is_expired_usec (GstRTSPSession * session, gint64 now)
|
||||||
{
|
{
|
||||||
gboolean res;
|
gboolean res;
|
||||||
|
@ -793,8 +792,7 @@ gst_rtsp_session_is_expired_usec (GstRTSPSession * session, gint64 now)
|
||||||
* Deprecated: Use gst_rtsp_session_is_expired_usec() instead.
|
* Deprecated: Use gst_rtsp_session_is_expired_usec() instead.
|
||||||
*/
|
*/
|
||||||
#ifndef GST_REMOVE_DEPRECATED
|
#ifndef GST_REMOVE_DEPRECATED
|
||||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS gboolean
|
||||||
gboolean
|
|
||||||
gst_rtsp_session_is_expired (GstRTSPSession * session, GTimeVal * now)
|
gst_rtsp_session_is_expired (GstRTSPSession * session, GTimeVal * now)
|
||||||
{
|
{
|
||||||
gboolean res;
|
gboolean res;
|
||||||
|
@ -804,5 +802,6 @@ gst_rtsp_session_is_expired (GstRTSPSession * session, GTimeVal * now)
|
||||||
|
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
G_GNUC_END_IGNORE_DEPRECATIONS
|
G_GNUC_END_IGNORE_DEPRECATIONS
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue