From 868a7a5a93d115cb8e0bd058df6646a59d98ca9e Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 11 Jul 2013 17:05:00 +0200 Subject: [PATCH] tests: fix client test --- tests/check/gst/client.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/check/gst/client.c b/tests/check/gst/client.c index e25ba48..f08add5 100644 --- a/tests/check/gst/client.c +++ b/tests/check/gst/client.c @@ -115,6 +115,7 @@ setup_client (const gchar * launch_line) GstRTSPSessionPool *session_pool; GstRTSPMountPoints *mount_points; GstRTSPMediaFactory *factory; + GstRTSPThreadPool *thread_pool; client = gst_rtsp_client_new (); @@ -132,8 +133,12 @@ setup_client (const gchar * launch_line) gst_rtsp_mount_points_add_factory (mount_points, "/test", factory); gst_rtsp_client_set_mount_points (client, mount_points); + thread_pool = gst_rtsp_thread_pool_new (); + gst_rtsp_client_set_thread_pool (client, thread_pool); + g_object_unref (mount_points); g_object_unref (session_pool); + g_object_unref (thread_pool); return client; } @@ -359,6 +364,7 @@ setup_multicast_client (void) GstRTSPMountPoints *mount_points; GstRTSPMediaFactory *factory; GstRTSPAddressPool *address_pool; + GstRTSPThreadPool *thread_pool; client = gst_rtsp_client_new (); @@ -376,9 +382,13 @@ setup_multicast_client (void) gst_rtsp_mount_points_add_factory (mount_points, "/test", factory); gst_rtsp_client_set_mount_points (client, mount_points); + thread_pool = gst_rtsp_thread_pool_new (); + gst_rtsp_client_set_thread_pool (client, thread_pool); + g_object_unref (mount_points); g_object_unref (session_pool); g_object_unref (address_pool); + g_object_unref (thread_pool); return client; } -- 2.7.4