Back to development
[platform/upstream/gstreamer.git] / examples / test-video-rtx.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 /* this timeout is periodically run to clean up the expired sessions from the
25  * pool. This needs to be run explicitly currently but might be done
26  * automatically as part of the mainloop. */
27 static gboolean
28 timeout (GstRTSPServer * server)
29 {
30   GstRTSPSessionPool *pool;
31
32   pool = gst_rtsp_server_get_session_pool (server);
33   gst_rtsp_session_pool_cleanup (pool);
34   g_object_unref (pool);
35
36   return TRUE;
37 }
38
39 int
40 main (int argc, char *argv[])
41 {
42   GMainLoop *loop;
43   GstRTSPServer *server;
44   GstRTSPMountPoints *mounts;
45   GstRTSPMediaFactory *factory;
46
47   gst_init (&argc, &argv);
48
49   loop = g_main_loop_new (NULL, FALSE);
50
51   /* create a server instance */
52   server = gst_rtsp_server_new ();
53
54   /* get the mount points for this server, every server has a default object
55    * that be used to map uri mount points to media factories */
56   mounts = gst_rtsp_server_get_mount_points (server);
57
58   /* make a media factory for a test stream. The default media factory can use
59    * gst-launch syntax to create pipelines.
60    * any launch line works as long as it contains elements named pay%d. Each
61    * element with pay%d names will be a stream */
62   factory = gst_rtsp_media_factory_new ();
63   gst_rtsp_media_factory_set_launch (factory, "( "
64       "videotestsrc ! video/x-raw,width=352,height=288,framerate=15/1 ! "
65       "x264enc ! rtph264pay name=pay0 pt=96 "
66       "audiotestsrc ! audio/x-raw,rate=8000 ! "
67       "alawenc ! rtppcmapay name=pay1 pt=8 " ")");
68
69   gst_rtsp_media_factory_set_profiles (factory, GST_RTSP_PROFILE_AVPF);
70
71   /* store up to 0.4 seconds of retransmission data */
72   gst_rtsp_media_factory_set_retransmission_time (factory, 400 * GST_MSECOND);
73
74   /* attach the test factory to the /test url */
75   gst_rtsp_mount_points_add_factory (mounts, "/test", factory);
76
77   /* don't need the ref to the mapper anymore */
78   g_object_unref (mounts);
79
80   /* attach the server to the default maincontext */
81   if (gst_rtsp_server_attach (server, NULL) == 0)
82     goto failed;
83
84   /* add a timeout for the session cleanup */
85   g_timeout_add_seconds (2, (GSourceFunc) timeout, server);
86
87   /* start serving, this never stops */
88   g_print ("stream ready at rtsp://127.0.0.1:8554/test\n");
89
90   g_main_loop_run (loop);
91
92   return 0;
93
94   /* ERRORS */
95 failed:
96   {
97     g_print ("failed to attach the server\n");
98     return -1;
99   }
100 }