mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 02:00:33 +00:00
rtsp-media: Unblock blocked streams in unprepare
The streams will be blocked when a live media is prepared. The streams should be unblocked in gst_rtsp_media_unprepare. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=727231
This commit is contained in:
parent
fd5e949169
commit
a3e6b11f11
2 changed files with 42 additions and 27 deletions
|
@ -2401,6 +2401,8 @@ gst_rtsp_media_unprepare (GstRTSPMedia * media)
|
||||||
goto is_busy;
|
goto is_busy;
|
||||||
|
|
||||||
GST_INFO ("unprepare media %p", media);
|
GST_INFO ("unprepare media %p", media);
|
||||||
|
if (priv->blocked)
|
||||||
|
media_streams_set_blocked (media, FALSE);
|
||||||
set_target_state (media, GST_STATE_NULL, FALSE);
|
set_target_state (media, GST_STATE_NULL, FALSE);
|
||||||
success = TRUE;
|
success = TRUE;
|
||||||
|
|
||||||
|
|
|
@ -123,6 +123,43 @@ GST_START_TEST (test_media)
|
||||||
|
|
||||||
GST_END_TEST;
|
GST_END_TEST;
|
||||||
|
|
||||||
|
static void
|
||||||
|
test_prepare_reusable (GstRTSPThreadPool * pool, const gchar * launch_line)
|
||||||
|
{
|
||||||
|
GstRTSPMediaFactory *factory;
|
||||||
|
GstRTSPMedia *media;
|
||||||
|
GstRTSPUrl *url;
|
||||||
|
GstRTSPThread *thread;
|
||||||
|
|
||||||
|
factory = gst_rtsp_media_factory_new ();
|
||||||
|
fail_if (gst_rtsp_media_factory_is_shared (factory));
|
||||||
|
fail_unless (gst_rtsp_url_parse ("rtsp://localhost:8554/test",
|
||||||
|
&url) == GST_RTSP_OK);
|
||||||
|
|
||||||
|
gst_rtsp_media_factory_set_launch (factory, launch_line);
|
||||||
|
|
||||||
|
media = gst_rtsp_media_factory_construct (factory, url);
|
||||||
|
fail_unless (GST_IS_RTSP_MEDIA (media));
|
||||||
|
fail_unless (gst_rtsp_media_n_streams (media) == 1);
|
||||||
|
|
||||||
|
g_object_set (G_OBJECT (media), "reusable", TRUE, NULL);
|
||||||
|
|
||||||
|
thread = gst_rtsp_thread_pool_get_thread (pool,
|
||||||
|
GST_RTSP_THREAD_TYPE_MEDIA, NULL);
|
||||||
|
fail_unless (gst_rtsp_media_prepare (media, thread));
|
||||||
|
fail_unless (gst_rtsp_media_unprepare (media));
|
||||||
|
fail_unless (gst_rtsp_media_n_streams (media) == 1);
|
||||||
|
|
||||||
|
thread = gst_rtsp_thread_pool_get_thread (pool,
|
||||||
|
GST_RTSP_THREAD_TYPE_MEDIA, NULL);
|
||||||
|
fail_unless (gst_rtsp_media_prepare (media, thread));
|
||||||
|
fail_unless (gst_rtsp_media_unprepare (media));
|
||||||
|
|
||||||
|
g_object_unref (media);
|
||||||
|
gst_rtsp_url_free (url);
|
||||||
|
g_object_unref (factory);
|
||||||
|
}
|
||||||
|
|
||||||
GST_START_TEST (test_media_prepare)
|
GST_START_TEST (test_media_prepare)
|
||||||
{
|
{
|
||||||
GstRTSPMediaFactory *factory;
|
GstRTSPMediaFactory *factory;
|
||||||
|
@ -161,34 +198,10 @@ GST_START_TEST (test_media_prepare)
|
||||||
g_object_unref (factory);
|
g_object_unref (factory);
|
||||||
|
|
||||||
/* test reusable media */
|
/* test reusable media */
|
||||||
factory = gst_rtsp_media_factory_new ();
|
test_prepare_reusable (pool, "( videotestsrc ! rtpvrawpay pt=96 name=pay0 )");
|
||||||
fail_if (gst_rtsp_media_factory_is_shared (factory));
|
test_prepare_reusable (pool,
|
||||||
fail_unless (gst_rtsp_url_parse ("rtsp://localhost:8554/test",
|
"( videotestsrc is-live=true ! rtpvrawpay pt=96 name=pay0 )");
|
||||||
&url) == GST_RTSP_OK);
|
|
||||||
|
|
||||||
gst_rtsp_media_factory_set_launch (factory,
|
|
||||||
"( videotestsrc ! rtpvrawpay pt=96 name=pay0 )");
|
|
||||||
|
|
||||||
media = gst_rtsp_media_factory_construct (factory, url);
|
|
||||||
fail_unless (GST_IS_RTSP_MEDIA (media));
|
|
||||||
fail_unless (gst_rtsp_media_n_streams (media) == 1);
|
|
||||||
|
|
||||||
g_object_set (G_OBJECT (media), "reusable", TRUE, NULL);
|
|
||||||
|
|
||||||
thread = gst_rtsp_thread_pool_get_thread (pool,
|
|
||||||
GST_RTSP_THREAD_TYPE_MEDIA, NULL);
|
|
||||||
fail_unless (gst_rtsp_media_prepare (media, thread));
|
|
||||||
fail_unless (gst_rtsp_media_unprepare (media));
|
|
||||||
fail_unless (gst_rtsp_media_n_streams (media) == 1);
|
|
||||||
|
|
||||||
thread = gst_rtsp_thread_pool_get_thread (pool,
|
|
||||||
GST_RTSP_THREAD_TYPE_MEDIA, NULL);
|
|
||||||
fail_unless (gst_rtsp_media_prepare (media, thread));
|
|
||||||
fail_unless (gst_rtsp_media_unprepare (media));
|
|
||||||
|
|
||||||
g_object_unref (media);
|
|
||||||
gst_rtsp_url_free (url);
|
|
||||||
g_object_unref (factory);
|
|
||||||
g_object_unref (pool);
|
g_object_unref (pool);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue