2008-10-09 12:29:12 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-04 00:14:25 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2008-10-09 12:29:12 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2009-01-08 12:18:55 +00:00
|
|
|
#include <gst/rtsp-server/rtsp-server.h>
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2011-01-12 17:33:49 +00:00
|
|
|
/* define this if you want the resource to only be available when using
|
|
|
|
* user/admin as the password */
|
|
|
|
#undef WITH_AUTH
|
2009-02-13 19:00:34 +00:00
|
|
|
|
2011-01-12 17:33:49 +00:00
|
|
|
/* this timeout is periodically run to clean up the expired sessions from the
|
|
|
|
* pool. This needs to be run explicitly currently but might be done
|
|
|
|
* automatically as part of the mainloop. */
|
2009-02-13 19:00:34 +00:00
|
|
|
static gboolean
|
2010-12-11 09:49:30 +00:00
|
|
|
timeout (GstRTSPServer * server, gboolean ignored)
|
2009-02-13 19:00:34 +00:00
|
|
|
{
|
|
|
|
GstRTSPSessionPool *pool;
|
|
|
|
|
|
|
|
pool = gst_rtsp_server_get_session_pool (server);
|
|
|
|
gst_rtsp_session_pool_cleanup (pool);
|
|
|
|
g_object_unref (pool);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
int
|
|
|
|
main (int argc, char *argv[])
|
|
|
|
{
|
|
|
|
GMainLoop *loop;
|
|
|
|
GstRTSPServer *server;
|
2012-11-26 11:34:05 +00:00
|
|
|
GstRTSPMountPoints *mounts;
|
2009-01-22 14:33:29 +00:00
|
|
|
GstRTSPMediaFactory *factory;
|
2011-01-12 17:33:49 +00:00
|
|
|
#ifdef WITH_AUTH
|
2011-01-11 23:17:54 +00:00
|
|
|
GstRTSPAuth *auth;
|
|
|
|
gchar *basic;
|
2011-01-12 12:57:09 +00:00
|
|
|
#endif
|
2008-10-09 12:29:12 +00:00
|
|
|
|
|
|
|
gst_init (&argc, &argv);
|
|
|
|
|
|
|
|
loop = g_main_loop_new (NULL, FALSE);
|
|
|
|
|
|
|
|
/* create a server instance */
|
|
|
|
server = gst_rtsp_server_new ();
|
|
|
|
|
2012-11-26 11:34:05 +00:00
|
|
|
/* get the mount points for this server, every server has a default object
|
2009-01-22 14:33:29 +00:00
|
|
|
* that be used to map uri mount points to media factories */
|
2012-11-26 11:34:05 +00:00
|
|
|
mounts = gst_rtsp_server_get_mount_points (server);
|
2009-01-22 14:33:29 +00:00
|
|
|
|
2011-01-12 17:33:49 +00:00
|
|
|
#ifdef WITH_AUTH
|
|
|
|
/* make a new authentication manager. it can be added to control access to all
|
|
|
|
* the factories on the server or on individual factories. */
|
2011-01-11 23:17:54 +00:00
|
|
|
auth = gst_rtsp_auth_new ();
|
|
|
|
basic = gst_rtsp_auth_make_basic ("user", "admin");
|
|
|
|
gst_rtsp_auth_set_basic (auth, basic);
|
|
|
|
g_free (basic);
|
|
|
|
/* configure in the server */
|
|
|
|
gst_rtsp_server_set_auth (server, auth);
|
2011-01-12 12:57:09 +00:00
|
|
|
#endif
|
2011-01-11 23:17:54 +00:00
|
|
|
|
2009-01-22 15:54:07 +00:00
|
|
|
/* make a media factory for a test stream. The default media factory can use
|
|
|
|
* gst-launch syntax to create pipelines.
|
|
|
|
* any launch line works as long as it contains elements named pay%d. Each
|
2009-01-22 14:33:29 +00:00
|
|
|
* element with pay%d names will be a stream */
|
2009-01-22 15:54:07 +00:00
|
|
|
factory = gst_rtsp_media_factory_new ();
|
2009-01-22 14:33:29 +00:00
|
|
|
gst_rtsp_media_factory_set_launch (factory, "( "
|
2011-12-09 09:53:30 +00:00
|
|
|
"videotestsrc ! video/x-raw,width=352,height=288,framerate=15/1 ! "
|
2010-12-11 09:49:30 +00:00
|
|
|
"x264enc ! rtph264pay name=pay0 pt=96 "
|
2011-12-09 09:53:30 +00:00
|
|
|
"audiotestsrc ! audio/x-raw,rate=8000 ! "
|
2010-12-11 09:49:30 +00:00
|
|
|
"alawenc ! rtppcmapay name=pay1 pt=97 " ")");
|
2009-01-29 12:31:27 +00:00
|
|
|
|
2009-01-22 15:54:07 +00:00
|
|
|
/* attach the test factory to the /test url */
|
2012-11-26 11:34:05 +00:00
|
|
|
gst_rtsp_mount_points_add_factory (mounts, "/test", factory);
|
2009-01-22 14:33:29 +00:00
|
|
|
|
|
|
|
/* don't need the ref to the mapper anymore */
|
2012-11-26 11:34:05 +00:00
|
|
|
g_object_unref (mounts);
|
2009-01-22 14:33:29 +00:00
|
|
|
|
2008-10-09 12:29:12 +00:00
|
|
|
/* attach the server to the default maincontext */
|
2010-03-09 12:41:33 +00:00
|
|
|
if (gst_rtsp_server_attach (server, NULL) == 0)
|
|
|
|
goto failed;
|
2008-10-09 12:29:12 +00:00
|
|
|
|
2011-01-12 17:33:49 +00:00
|
|
|
/* add a timeout for the session cleanup */
|
2010-12-11 09:49:30 +00:00
|
|
|
g_timeout_add_seconds (2, (GSourceFunc) timeout, server);
|
2009-02-13 19:00:34 +00:00
|
|
|
|
2011-01-12 17:33:49 +00:00
|
|
|
/* start serving, this never stops */
|
2011-07-19 14:10:39 +00:00
|
|
|
g_print ("stream ready at rtsp://127.0.0.1:8554/test\n");
|
2008-10-09 12:29:12 +00:00
|
|
|
g_main_loop_run (loop);
|
|
|
|
|
|
|
|
return 0;
|
2010-03-09 12:41:33 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
failed:
|
|
|
|
{
|
|
|
|
g_print ("failed to attach the server\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2008-10-09 12:29:12 +00:00
|
|
|
}
|