tests: remove extra unref in test_setup_non_existing_stream
[platform/upstream/gstreamer.git] / examples / test-launch.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   GstRTSPMountPoints *mounts;
30   GstRTSPMediaFactory *factory;
31
32   gst_init (&argc, &argv);
33
34   if (argc < 2) {
35     g_print ("usage: %s <launch line> \n"
36         "example: %s \"( videotestsrc ! x264enc ! rtph264pay name=pay0 pt=96 )\"\n",
37         argv[0], argv[0]);
38     return -1;
39   }
40
41   loop = g_main_loop_new (NULL, FALSE);
42
43   /* create a server instance */
44   server = gst_rtsp_server_new ();
45
46   /* get the mount points for this server, every server has a default object
47    * that be used to map uri mount points to media factories */
48   mounts = gst_rtsp_server_get_mount_points (server);
49
50   /* make a media factory for a test stream. The default media factory can use
51    * gst-launch syntax to create pipelines.
52    * any launch line works as long as it contains elements named pay%d. Each
53    * element with pay%d names will be a stream */
54   factory = gst_rtsp_media_factory_new ();
55   gst_rtsp_media_factory_set_launch (factory, argv[1]);
56
57   /* attach the test factory to the /test url */
58   gst_rtsp_mount_points_add_factory (mounts, "/test", factory);
59
60   /* don't need the ref to the mapper anymore */
61   g_object_unref (mounts);
62
63   /* attach the server to the default maincontext */
64   gst_rtsp_server_attach (server, NULL);
65
66   /* start serving */
67   g_print ("stream ready at rtsp://127.0.0.1:8554/test\n");
68   g_main_loop_run (loop);
69
70   return 0;
71 }