server: start and stop multiple times
[platform/upstream/gstreamer.git] / examples / test-multicast2.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
24
25 static gboolean
26 timeout (GstRTSPServer * server, gboolean ignored)
27 {
28   GstRTSPSessionPool *pool;
29
30   pool = gst_rtsp_server_get_session_pool (server);
31   gst_rtsp_session_pool_cleanup (pool);
32   g_object_unref (pool);
33
34   return TRUE;
35 }
36
37 static void
38 media_constructed (GstRTSPMediaFactory * factory, GstRTSPMedia * media)
39 {
40   guint i, n_streams;
41
42   n_streams = gst_rtsp_media_n_streams (media);
43
44   for (i = 0; i < n_streams; i++) {
45     GstRTSPAddressPool *pool;
46     GstRTSPStream *stream;
47     gchar *min, *max;
48
49     stream = gst_rtsp_media_get_stream (media, i);
50
51     /* make a new address pool */
52     pool = gst_rtsp_address_pool_new ();
53
54     min = g_strdup_printf ("224.3.0.%d", (2 * i) + 1);
55     max = g_strdup_printf ("224.3.0.%d", (2 * i) + 2);
56     gst_rtsp_address_pool_add_range (pool, min, max,
57         5000 + (10 * i), 5010 + (10 * i), 1);
58     g_free (min);
59     g_free (max);
60
61     gst_rtsp_stream_set_address_pool (stream, pool);
62     g_object_unref (pool);
63   }
64 }
65
66 int
67 main (int argc, char *argv[])
68 {
69   GMainLoop *loop;
70   GstRTSPServer *server;
71   GstRTSPMediaMapping *mapping;
72   GstRTSPMediaFactory *factory;
73
74   gst_init (&argc, &argv);
75
76   loop = g_main_loop_new (NULL, FALSE);
77
78   /* create a server instance */
79   server = gst_rtsp_server_new ();
80
81   /* get the mapping for this server, every server has a default mapper object
82    * that be used to map uri mount points to media factories */
83   mapping = gst_rtsp_server_get_media_mapping (server);
84
85   /* make a media factory for a test stream. The default media factory can use
86    * gst-launch syntax to create pipelines. 
87    * any launch line works as long as it contains elements named pay%d. Each
88    * element with pay%d names will be a stream */
89   factory = gst_rtsp_media_factory_new ();
90   gst_rtsp_media_factory_set_launch (factory, "( "
91       "videotestsrc ! video/x-raw,width=352,height=288,framerate=15/1 ! "
92       "x264enc ! rtph264pay name=pay0 pt=96 "
93       "audiotestsrc ! audio/x-raw,rate=8000 ! "
94       "alawenc ! rtppcmapay name=pay1 pt=97 " ")");
95
96   gst_rtsp_media_factory_set_shared (factory, TRUE);
97
98   g_signal_connect (factory, "media-constructed", (GCallback)
99       media_constructed, NULL);
100
101   /* attach the test factory to the /test url */
102   gst_rtsp_media_mapping_add_factory (mapping, "/test", factory);
103
104   /* don't need the ref to the mapper anymore */
105   g_object_unref (mapping);
106
107   /* attach the server to the default maincontext */
108   if (gst_rtsp_server_attach (server, NULL) == 0)
109     goto failed;
110
111   g_timeout_add_seconds (2, (GSourceFunc) timeout, server);
112
113   /* start serving */
114   g_print ("stream ready at rtsp://127.0.0.1:8554/test\n");
115   g_main_loop_run (loop);
116
117   return 0;
118
119   /* ERRORS */
120 failed:
121   {
122     g_print ("failed to attach the server\n");
123     return -1;
124   }
125 }