tests: remove extra unref in test_setup_non_existing_stream
[platform/upstream/gstreamer.git] / examples / test-uri.c
1 /* GStreamer
2  * Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #include <gst/gst.h>
21
22 #include <gst/rtsp-server/rtsp-server.h>
23 #include <gst/rtsp-server/rtsp-media-factory-uri.h>
24
25
26 static gboolean
27 timeout (GstRTSPServer * server)
28 {
29   GstRTSPSessionPool *pool;
30
31   pool = gst_rtsp_server_get_session_pool (server);
32   gst_rtsp_session_pool_cleanup (pool);
33   g_object_unref (pool);
34
35   return TRUE;
36 }
37
38 static gboolean
39 remove_map (GstRTSPServer * server)
40 {
41   GstRTSPMountPoints *mounts;
42
43   g_print ("removing /test mount point\n");
44   mounts = gst_rtsp_server_get_mount_points (server);
45   gst_rtsp_mount_points_remove_factory (mounts, "/test");
46   g_object_unref (mounts);
47
48   return FALSE;
49 }
50
51 int
52 main (int argc, char *argv[])
53 {
54   GMainLoop *loop;
55   GstRTSPServer *server;
56   GstRTSPMountPoints *mounts;
57   GstRTSPMediaFactoryURI *factory;
58
59   gst_init (&argc, &argv);
60
61   if (argc < 2) {
62     g_message ("usage: %s <uri>", argv[0]);
63     return -1;
64   }
65
66   loop = g_main_loop_new (NULL, FALSE);
67
68   /* create a server instance */
69   server = gst_rtsp_server_new ();
70
71   /* get the mount points for this server, every server has a default object
72    * that be used to map uri mount points to media factories */
73   mounts = gst_rtsp_server_get_mount_points (server);
74
75   /* make a URI media factory for a test stream. */
76   factory = gst_rtsp_media_factory_uri_new ();
77   /* when using GStreamer as a client, one can use the gst payloader, which is
78    * more efficient when there is no payloader for the compressed format */
79   /* g_object_set (factory, "use-gstpay", TRUE, NULL); */
80   gst_rtsp_media_factory_uri_set_uri (factory, argv[1]);
81   /* if you want multiple clients to see the same video, set the shared property
82    * to TRUE */
83   /* gst_rtsp_media_factory_set_shared ( GST_RTSP_MEDIA_FACTORY (factory), TRUE); */
84
85   /* attach the test factory to the /test url */
86   gst_rtsp_mount_points_add_factory (mounts, "/test",
87       GST_RTSP_MEDIA_FACTORY (factory));
88
89   /* don't need the ref to the mapper anymore */
90   g_object_unref (mounts);
91
92   /* attach the server to the default maincontext */
93   if (gst_rtsp_server_attach (server, NULL) == 0)
94     goto failed;
95
96   /* do session cleanup every 2 seconds */
97   g_timeout_add_seconds (2, (GSourceFunc) timeout, server);
98   /* remove the mount point after 10 seconds, new clients won't be able to use the
99    * /test url anymore */
100   g_timeout_add_seconds (10, (GSourceFunc) remove_map, server);
101
102   /* start serving */
103   g_print ("stream ready at rtsp://127.0.0.1:8554/test\n");
104   g_main_loop_run (loop);
105
106   return 0;
107
108   /* ERRORS */
109 failed:
110   {
111     g_print ("failed to attach the server\n");
112     return -1;
113   }
114 }