41194a098e53f3e7fe976a66242d0ee6a9852668
[platform/upstream/gstreamer.git] / examples / test-video.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., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include <gst/gst.h>
21
22 #include <gst/rtsp-server/rtsp-server.h>
23
24
25 static gboolean
26 timeout (GstRTSPServer * server, gboolean ignored)
27 {
28   GstRTSPSessionPool *pool;
29
30   pool = gst_rtsp_server_get_session_pool (server);
31   gst_rtsp_session_pool_cleanup (pool);
32   g_object_unref (pool);
33
34   return TRUE;
35 }
36
37 int
38 main (int argc, char *argv[])
39 {
40   GMainLoop *loop;
41   GstRTSPServer *server;
42   GstRTSPMediaMapping *mapping;
43   GstRTSPMediaFactory *factory;
44 #if 0
45   GstRTSPAuth *auth;
46   gchar *basic;
47 #endif
48
49   gst_init (&argc, &argv);
50
51   loop = g_main_loop_new (NULL, FALSE);
52
53   /* create a server instance */
54   server = gst_rtsp_server_new ();
55
56   /* get the mapping for this server, every server has a default mapper object
57    * that be used to map uri mount points to media factories */
58   mapping = gst_rtsp_server_get_media_mapping (server);
59
60 #if 0
61   /* make a new authentication manager */
62   auth = gst_rtsp_auth_new ();
63   basic = gst_rtsp_auth_make_basic ("user", "admin");
64   gst_rtsp_auth_set_basic (auth, basic);
65   g_free (basic);
66   /* configure in the server */
67   gst_rtsp_server_set_auth (server, auth);
68 #endif
69
70   /* make a media factory for a test stream. The default media factory can use
71    * gst-launch syntax to create pipelines. 
72    * any launch line works as long as it contains elements named pay%d. Each
73    * element with pay%d names will be a stream */
74   factory = gst_rtsp_media_factory_new ();
75   gst_rtsp_media_factory_set_launch (factory, "( "
76       "videotestsrc ! video/x-raw-yuv,width=352,height=288,framerate=15/1 ! "
77       "x264enc ! rtph264pay name=pay0 pt=96 "
78       "audiotestsrc ! audio/x-raw-int,rate=8000 ! "
79       "alawenc ! rtppcmapay name=pay1 pt=97 " ")");
80
81   /* attach the test factory to the /test url */
82   gst_rtsp_media_mapping_add_factory (mapping, "/test", factory);
83
84   /* don't need the ref to the mapper anymore */
85   g_object_unref (mapping);
86
87   /* attach the server to the default maincontext */
88   if (gst_rtsp_server_attach (server, NULL) == 0)
89     goto failed;
90
91   g_timeout_add_seconds (2, (GSourceFunc) timeout, server);
92
93   /* start serving */
94   g_main_loop_run (loop);
95
96   return 0;
97
98   /* ERRORS */
99 failed:
100   {
101     g_print ("failed to attach the server\n");
102     return -1;
103   }
104 }