2 * Copyright (C) 2009 Wim Taymans <wim.taymans at gmail.com>
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.
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.
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.
22 #include <gst/rtsp-server/rtsp-server.h>
26 timeout (GstRTSPServer * server)
28 GstRTSPSessionPool *pool;
30 pool = gst_rtsp_server_get_session_pool (server);
31 gst_rtsp_session_pool_cleanup (pool);
32 g_object_unref (pool);
38 media_configure (GstRTSPMediaFactory * factory, GstRTSPMedia * media)
40 gst_rtsp_media_set_reusable (media, TRUE);
44 main (int argc, char *argv[])
47 GstRTSPServer *server;
48 GstRTSPMountPoints *mounts;
49 GstRTSPMediaFactory *factory;
52 gst_init (&argc, &argv);
55 g_message ("usage: %s <filename.sdp>", argv[0]);
59 loop = g_main_loop_new (NULL, FALSE);
61 /* create a server instance */
62 server = gst_rtsp_server_new ();
64 /* get the mount points for this server, every server has a default object
65 * that be used to map uri mount points to media factories */
66 mounts = gst_rtsp_server_get_mount_points (server);
68 /* make a media factory for a test stream. The default media factory can use
69 * gst-launch syntax to create pipelines.
70 * any launch line works as long as it contains elements named pay%d. Each
71 * element with pay%d names will be a stream */
72 factory = gst_rtsp_media_factory_new ();
75 g_strdup_printf ("( filesrc location=%s ! sdpdemux name=dynpay0 )",
77 gst_rtsp_media_factory_set_launch (factory, str);
78 gst_rtsp_media_factory_set_shared (factory, TRUE);
79 g_signal_connect (factory, "media-configure", (GCallback) media_configure,
83 /* attach the test factory to the /test url */
84 gst_rtsp_mount_points_add_factory (mounts, "/test", factory);
86 /* don't need the ref to the mapper anymore */
87 g_object_unref (mounts);
89 /* attach the server to the default maincontext */
90 gst_rtsp_server_attach (server, NULL);
92 g_timeout_add_seconds (2, (GSourceFunc) timeout, server);
95 g_main_loop_run (loop);