gstreamer: update translations
[platform/upstream/gstreamer.git] / subprojects / gst-rtsp-server / 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 #define DEFAULT_RTSP_PORT "8554"
25 #define DEFAULT_DISABLE_RTCP FALSE
26
27 static char *port = (char *) DEFAULT_RTSP_PORT;
28 static gboolean disable_rtcp = DEFAULT_DISABLE_RTCP;
29
30 static GOptionEntry entries[] = {
31   {"port", 'p', 0, G_OPTION_ARG_STRING, &port,
32       "Port to listen on (default: " DEFAULT_RTSP_PORT ")", "PORT"},
33   {"disable-rtcp", '\0', 0, G_OPTION_ARG_NONE, &disable_rtcp,
34       "Whether RTCP should be disabled (default false)", NULL},
35   {NULL}
36 };
37
38 int
39 main (int argc, char *argv[])
40 {
41   GMainLoop *loop;
42   GstRTSPServer *server;
43   GstRTSPMountPoints *mounts;
44   GstRTSPMediaFactory *factory;
45   GOptionContext *optctx;
46   GError *error = NULL;
47
48   optctx = g_option_context_new ("<launch line> - Test RTSP Server, Launch\n\n"
49       "Example: \"( videotestsrc ! x264enc ! rtph264pay name=pay0 pt=96 )\"");
50   g_option_context_add_main_entries (optctx, entries, NULL);
51   g_option_context_add_group (optctx, gst_init_get_option_group ());
52   if (!g_option_context_parse (optctx, &argc, &argv, &error)) {
53     g_printerr ("Error parsing options: %s\n", error->message);
54     g_option_context_free (optctx);
55     g_clear_error (&error);
56     return -1;
57   }
58   g_option_context_free (optctx);
59
60   loop = g_main_loop_new (NULL, FALSE);
61
62   /* create a server instance */
63   server = gst_rtsp_server_new ();
64   g_object_set (server, "service", port, NULL);
65
66   /* get the mount points for this server, every server has a default object
67    * that be used to map uri mount points to media factories */
68   mounts = gst_rtsp_server_get_mount_points (server);
69
70   /* make a media factory for a test stream. The default media factory can use
71    * gst-launch syntax to create pipelines.
72    * any launch line works as long as it contains elements named pay%d. Each
73    * element with pay%d names will be a stream */
74   factory = gst_rtsp_media_factory_new ();
75   gst_rtsp_media_factory_set_launch (factory, argv[1]);
76   gst_rtsp_media_factory_set_shared (factory, TRUE);
77   gst_rtsp_media_factory_set_enable_rtcp (factory, !disable_rtcp);
78
79   /* attach the test factory to the /test url */
80   gst_rtsp_mount_points_add_factory (mounts, "/test", factory);
81
82   /* don't need the ref to the mapper anymore */
83   g_object_unref (mounts);
84
85   /* attach the server to the default maincontext */
86   gst_rtsp_server_attach (server, NULL);
87
88   /* start serving */
89   g_print ("stream ready at rtsp://127.0.0.1:%s/test\n", port);
90   g_main_loop_run (loop);
91
92   return 0;
93 }