summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2015-01-09 12:40:47 +0100
committerSebastian Dröge <sebastian@centricular.com>2015-02-06 09:42:42 +0100
commitccf6c6eb53cc35050a9d9b736a6714268446c550 (patch)
treef087b357abbbbd0da6cd9930fac305cc9dc97909 /examples
parent18668bf49570b3ab75e35dd275f4761f0210cc42 (diff)
downloadgstreamer-ccf6c6eb53cc35050a9d9b736a6714268446c550.tar.gz
Add initial support for RECORD
We currently only support media that is RECORD or PLAY only, not both at once. https://bugzilla.gnome.org/show_bug.cgi?id=743175
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile.am2
-rw-r--r--examples/test-record.c68
2 files changed, 69 insertions, 1 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am
index 6d13ed6737..ef33adf75b 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -1,7 +1,7 @@
noinst_PROGRAMS = test-video test-ogg test-mp4 test-readme \
test-launch test-sdp test-uri test-auth \
test-multicast test-multicast2 test-appsrc \
- test-video-rtx
+ test-video-rtx test-record
#INCLUDES = -I$(top_srcdir) -I$(srcdir)
diff --git a/examples/test-record.c b/examples/test-record.c
new file mode 100644
index 0000000000..676ae982e5
--- /dev/null
+++ b/examples/test-record.c
@@ -0,0 +1,68 @@
+/* GStreamer
+ * Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.com>
+ * Copyright (C) 2015 Centricular Ltd
+ * Author: Sebastian Dröge <sebastian@centricular.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
+ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#include <gst/gst.h>
+
+#include <gst/rtsp-server/rtsp-server.h>
+
+int
+main (int argc, char *argv[])
+{
+ GMainLoop *loop;
+ GstRTSPServer *server;
+ GstRTSPMountPoints *mounts;
+ GstRTSPMediaFactory *factory;
+
+ gst_init (&argc, &argv);
+
+ loop = g_main_loop_new (NULL, FALSE);
+
+ /* create a server instance */
+ server = gst_rtsp_server_new ();
+
+ /* get the mount points for this server, every server has a default object
+ * that be used to map uri mount points to media factories */
+ mounts = gst_rtsp_server_get_mount_points (server);
+
+ /* 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 depay%d. Each
+ * element with depay%d names will be a stream */
+ factory = gst_rtsp_media_factory_new ();
+ gst_rtsp_media_factory_set_record (factory, TRUE);
+ gst_rtsp_media_factory_set_launch (factory,
+ "( decodebin name=depay0 ! autovideosink decodebin name=depay1 ! autoaudiosink )");
+
+ /* attach the test factory to the /test url */
+ gst_rtsp_mount_points_add_factory (mounts, "/test", factory);
+
+ /* don't need the ref to the mapper anymore */
+ g_object_unref (mounts);
+
+ /* attach the server to the default maincontext */
+ gst_rtsp_server_attach (server, NULL);
+
+ /* start serving */
+ g_print ("stream ready at rtsp://127.0.0.1:8554/test\n");
+ g_main_loop_run (loop);
+
+ return 0;
+}