server: start and stop multiple times
[platform/upstream/gstreamer.git] / examples / test-video.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 /* define this if you want the resource to only be available when using
25  * user/admin as the password */
26 #undef WITH_AUTH
27
28 /* this timeout is periodically run to clean up the expired sessions from the
29  * pool. This needs to be run explicitly currently but might be done
30  * automatically as part of the mainloop. */
31 static gboolean
32 timeout (GstRTSPServer * server, gboolean ignored)
33 {
34   GstRTSPSessionPool *pool;
35
36   pool = gst_rtsp_server_get_session_pool (server);
37   gst_rtsp_session_pool_cleanup (pool);
38   g_object_unref (pool);
39
40   return TRUE;
41 }
42
43 int
44 main (int argc, char *argv[])
45 {
46   GMainLoop *loop;
47   GstRTSPServer *server;
48   GstRTSPMediaMapping *mapping;
49   GstRTSPMediaFactory *factory;
50 #ifdef WITH_AUTH
51   GstRTSPAuth *auth;
52   gchar *basic;
53 #endif
54
55   gst_init (&argc, &argv);
56
57   loop = g_main_loop_new (NULL, FALSE);
58
59   /* create a server instance */
60   server = gst_rtsp_server_new ();
61
62   /* get the mapping for this server, every server has a default mapper object
63    * that be used to map uri mount points to media factories */
64   mapping = gst_rtsp_server_get_media_mapping (server);
65
66 #ifdef WITH_AUTH
67   /* make a new authentication manager. it can be added to control access to all
68    * the factories on the server or on individual factories. */
69   auth = gst_rtsp_auth_new ();
70   basic = gst_rtsp_auth_make_basic ("user", "admin");
71   gst_rtsp_auth_set_basic (auth, basic);
72   g_free (basic);
73   /* configure in the server */
74   gst_rtsp_server_set_auth (server, auth);
75 #endif
76
77   /* make a media factory for a test stream. The default media factory can use
78    * gst-launch syntax to create pipelines. 
79    * any launch line works as long as it contains elements named pay%d. Each
80    * element with pay%d names will be a stream */
81   factory = gst_rtsp_media_factory_new ();
82   gst_rtsp_media_factory_set_launch (factory, "( "
83       "videotestsrc ! video/x-raw,width=352,height=288,framerate=15/1 ! "
84       "x264enc ! rtph264pay name=pay0 pt=96 "
85       "audiotestsrc ! audio/x-raw,rate=8000 ! "
86       "alawenc ! rtppcmapay name=pay1 pt=97 " ")");
87
88   /* attach the test factory to the /test url */
89   gst_rtsp_media_mapping_add_factory (mapping, "/test", factory);
90
91   /* don't need the ref to the mapper anymore */
92   g_object_unref (mapping);
93
94   /* attach the server to the default maincontext */
95   if (gst_rtsp_server_attach (server, NULL) == 0)
96     goto failed;
97
98   /* add a timeout for the session cleanup */
99   g_timeout_add_seconds (2, (GSourceFunc) timeout, server);
100
101   /* start serving, this never stops */
102   g_print ("stream ready at rtsp://127.0.0.1:8554/test\n");
103   g_main_loop_run (loop);
104
105   return 0;
106
107   /* ERRORS */
108 failed:
109   {
110     g_print ("failed to attach the server\n");
111     return -1;
112   }
113 }