mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
Fix double semicolons
This commit is contained in:
parent
852cc09f54
commit
896767b041
2 changed files with 3 additions and 3 deletions
|
@ -975,7 +975,7 @@ media_unprepared (GstRTSPMedia * media, GWeakRef * ref)
|
||||||
if (!factory)
|
if (!factory)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
priv = factory->priv;;
|
priv = factory->priv;
|
||||||
|
|
||||||
g_mutex_lock (&priv->medias_lock);
|
g_mutex_lock (&priv->medias_lock);
|
||||||
g_hash_table_foreach_remove (priv->medias, (GHRFunc) compare_media, media);
|
g_hash_table_foreach_remove (priv->medias, (GHRFunc) compare_media, media);
|
||||||
|
@ -1029,7 +1029,7 @@ gst_rtsp_media_factory_construct (GstRTSPMediaFactory * factory,
|
||||||
g_return_val_if_fail (GST_IS_RTSP_MEDIA_FACTORY (factory), NULL);
|
g_return_val_if_fail (GST_IS_RTSP_MEDIA_FACTORY (factory), NULL);
|
||||||
g_return_val_if_fail (url != NULL, NULL);
|
g_return_val_if_fail (url != NULL, NULL);
|
||||||
|
|
||||||
priv = factory->priv;;
|
priv = factory->priv;
|
||||||
klass = GST_RTSP_MEDIA_FACTORY_GET_CLASS (factory);
|
klass = GST_RTSP_MEDIA_FACTORY_GET_CLASS (factory);
|
||||||
|
|
||||||
/* convert the url to a key for the hashtable. NULL return or a NULL function
|
/* convert the url to a key for the hashtable. NULL return or a NULL function
|
||||||
|
|
|
@ -333,7 +333,7 @@ GST_START_TEST (test_describe)
|
||||||
|
|
||||||
GST_END_TEST;
|
GST_END_TEST;
|
||||||
|
|
||||||
static const gchar *expected_transport = NULL;;
|
static const gchar *expected_transport = NULL;
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
test_setup_response_200_multicast (GstRTSPClient * client,
|
test_setup_response_200_multicast (GstRTSPClient * client,
|
||||||
|
|
Loading…
Reference in a new issue