server: start and stop multiple times
[platform/upstream/gstreamer.git] / examples / test-mp4.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 int
25 main (int argc, char *argv[])
26 {
27   GMainLoop *loop;
28   GstRTSPServer *server;
29   GstRTSPMediaMapping *mapping;
30   GstRTSPMediaFactory *factory;
31   gchar *str;
32
33   gst_init (&argc, &argv);
34
35   if (argc < 2) {
36     g_message ("usage: %s <filename.mp4>", argv[0]);
37     return -1;
38   }
39
40   loop = g_main_loop_new (NULL, FALSE);
41
42   /* create a server instance */
43   server = gst_rtsp_server_new ();
44
45   /* get the mapping for this server, every server has a default mapper object
46    * that be used to map uri mount points to media factories */
47   mapping = gst_rtsp_server_get_media_mapping (server);
48
49   str = g_strdup_printf ("( "
50       "filesrc location=%s ! qtdemux name=d "
51       "d. ! queue ! rtph264pay pt=96 name=pay0 "
52       "d. ! queue ! rtpmp4apay pt=97 name=pay1 " ")", argv[1]);
53
54   /* make a media factory for a test stream. The default media factory can use
55    * gst-launch syntax to create pipelines. 
56    * any launch line works as long as it contains elements named pay%d. Each
57    * element with pay%d names will be a stream */
58   factory = gst_rtsp_media_factory_new ();
59   gst_rtsp_media_factory_set_launch (factory, str);
60   g_free (str);
61
62   /* attach the test factory to the /test url */
63   gst_rtsp_media_mapping_add_factory (mapping, "/test", factory);
64
65   /* don't need the ref to the mapper anymore */
66   g_object_unref (mapping);
67
68   /* attach the server to the default maincontext */
69   gst_rtsp_server_attach (server, NULL);
70
71   /* start serving */
72   g_main_loop_run (loop);
73
74   return 0;
75 }