rtsp-client: Add unit test of SETUP for RTSP/RTP/TCP
[platform/upstream/gstreamer.git] / examples / test-onvif-backchannel.c
1 /* GStreamer
2  * Copyright (C) 2017 Sebastian Dröge <sebastian@centricular.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 #include <gst/rtsp-server/rtsp-onvif-server.h>
22
23 #include <string.h>
24
25 int
26 main (int argc, char *argv[])
27 {
28   GMainLoop *loop;
29   GstRTSPServer *server;
30   GstRTSPMountPoints *mounts;
31   GstRTSPMediaFactory *factory;
32
33   gst_init (&argc, &argv);
34
35   loop = g_main_loop_new (NULL, FALSE);
36
37   /* create a server instance */
38   server = gst_rtsp_onvif_server_new ();
39
40   /* get the mount points for this server, every server has a default object
41    * that be used to map uri mount points to media factories */
42   mounts = gst_rtsp_server_get_mount_points (server);
43
44   /* make a media factory for a test stream. The default media factory can use
45    * gst-launch syntax to create pipelines.
46    * any launch line works as long as it contains elements named pay%d. Each
47    * element with pay%d names will be a stream */
48   factory = gst_rtsp_onvif_media_factory_new ();
49   gst_rtsp_media_factory_set_launch (factory,
50       "( videotestsrc is-live=true ! x264enc ! rtph264pay name=pay0 pt=96 audiotestsrc is-live=true ! mulawenc ! rtppcmupay name=pay1 )");
51   gst_rtsp_onvif_media_factory_set_backchannel_launch
52       (GST_RTSP_ONVIF_MEDIA_FACTORY (factory),
53       "( capsfilter caps=\"application/x-rtp, media=audio, payload=0, clock-rate=8000, encoding-name=PCMU\" name=depay_backchannel ! rtppcmudepay ! fakesink async=false  )");
54   gst_rtsp_media_factory_set_shared (factory, FALSE);
55   gst_rtsp_media_factory_set_media_gtype (factory, GST_TYPE_RTSP_ONVIF_MEDIA);
56
57   /* attach the test factory to the /test url */
58   gst_rtsp_mount_points_add_factory (mounts, "/test", factory);
59
60   /* don't need the ref to the mapper anymore */
61   g_object_unref (mounts);
62
63   /* attach the server to the default maincontext */
64   gst_rtsp_server_attach (server, NULL);
65
66   /* start serving */
67   g_print ("stream ready at rtsp://127.0.0.1:8554/test\n");
68   g_main_loop_run (loop);
69
70   return 0;
71 }