use 0.0.0.0 or :: for c= line instead of server address
[platform/upstream/gstreamer.git] / gst / rtsp-server / rtsp-sdp.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., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19 #include <string.h>
20
21 #include "rtsp-sdp.h"
22
23 static gboolean
24 get_info_from_tags (GstPad * pad, GstEvent ** event, gpointer user_data)
25 {
26   GstSDPMedia *media = (GstSDPMedia *) user_data;
27
28   if (GST_EVENT_TYPE (*event) == GST_EVENT_TAG) {
29     GstTagList *tags;
30     guint bitrate = 0;
31
32     gst_event_parse_tag (*event, &tags);
33
34     if (gst_tag_list_get_scope (tags) != GST_TAG_SCOPE_STREAM)
35       return TRUE;
36
37     if (!gst_tag_list_get_uint (tags, GST_TAG_MAXIMUM_BITRATE,
38             &bitrate) || bitrate == 0)
39       if (!gst_tag_list_get_uint (tags, GST_TAG_BITRATE, &bitrate) ||
40           bitrate == 0)
41         return TRUE;
42
43     /* set bandwidth (kbits/s) */
44     gst_sdp_media_add_bandwidth (media, GST_SDP_BWTYPE_AS, bitrate / 1000);
45
46     return FALSE;
47
48   }
49
50   return TRUE;
51 }
52
53 static void
54 update_sdp_from_tags (GstRTSPStream * stream, GstSDPMedia * stream_media)
55 {
56   GstPad *src_pad;
57
58   src_pad = gst_rtsp_stream_get_srcpad (stream);
59
60   gst_pad_sticky_events_foreach (src_pad, get_info_from_tags, stream_media);
61
62   gst_object_unref (src_pad);
63 }
64
65 /**
66  * gst_rtsp_sdp_from_media:
67  * @sdp: a #GstSDPMessage
68  * @info: info
69  * @media: a #GstRTSPMedia
70  *
71  * Add @media specific info to @sdp. @info is used to configure the connection
72  * information in the SDP.
73  *
74  * Returns: TRUE on success.
75  */
76 gboolean
77 gst_rtsp_sdp_from_media (GstSDPMessage * sdp, GstSDPInfo * info,
78     GstRTSPMedia * media)
79 {
80   guint i, n_streams;
81   gchar *rangestr;
82
83   n_streams = gst_rtsp_media_n_streams (media);
84
85   rangestr = gst_rtsp_media_get_range_string (media, FALSE, GST_RTSP_RANGE_NPT);
86   if (rangestr == NULL)
87     goto not_prepared;
88
89   gst_sdp_message_add_attribute (sdp, "range", rangestr);
90   g_free (rangestr);
91
92   for (i = 0; i < n_streams; i++) {
93     GstRTSPStream *stream;
94     GstSDPMedia *smedia;
95     GstStructure *s;
96     const gchar *caps_str, *caps_enc, *caps_params;
97     gchar *tmp;
98     gint caps_pt, caps_rate;
99     guint n_fields, j;
100     gboolean first;
101     GString *fmtp;
102     GstCaps *caps;
103
104     stream = gst_rtsp_media_get_stream (media, i);
105     caps = gst_rtsp_stream_get_caps (stream);
106
107     if (caps == NULL) {
108       g_warning ("ignoring stream %d without media type", i);
109       continue;
110     }
111
112     s = gst_caps_get_structure (caps, 0);
113     if (s == NULL) {
114       gst_caps_unref (caps);
115       g_warning ("ignoring stream %d without media type", i);
116       continue;
117     }
118
119     gst_sdp_media_new (&smedia);
120
121     /* get media type and payload for the m= line */
122     caps_str = gst_structure_get_string (s, "media");
123     gst_sdp_media_set_media (smedia, caps_str);
124
125     gst_structure_get_int (s, "payload", &caps_pt);
126     tmp = g_strdup_printf ("%d", caps_pt);
127     gst_sdp_media_add_format (smedia, tmp);
128     g_free (tmp);
129
130     gst_sdp_media_set_port_info (smedia, 0, 1);
131     gst_sdp_media_set_proto (smedia, "RTP/AVP");
132
133     /* for the c= line */
134     if (strcmp (info->server_proto, "IP6") == 0) {
135       gst_sdp_media_add_connection (smedia, "IN", info->server_proto,
136           "::", 16, 0);
137     } else {
138       if (strcmp (info->server_proto, "IP4") != 0) {
139         GST_WARNING ("unknown ip version when creating connection line in sdp,"
140             " using IP4");
141       }
142       gst_sdp_media_add_connection (smedia, "IN", info->server_proto,
143           "0.0.0.0", 16, 0);
144     }
145
146     /* get clock-rate, media type and params for the rtpmap attribute */
147     gst_structure_get_int (s, "clock-rate", &caps_rate);
148     caps_enc = gst_structure_get_string (s, "encoding-name");
149     caps_params = gst_structure_get_string (s, "encoding-params");
150
151     if (caps_enc) {
152       if (caps_params)
153         tmp = g_strdup_printf ("%d %s/%d/%s", caps_pt, caps_enc, caps_rate,
154             caps_params);
155       else
156         tmp = g_strdup_printf ("%d %s/%d", caps_pt, caps_enc, caps_rate);
157
158       gst_sdp_media_add_attribute (smedia, "rtpmap", tmp);
159       g_free (tmp);
160     }
161
162     /* the config uri */
163     tmp = g_strdup_printf ("stream=%d", i);
164     gst_sdp_media_add_attribute (smedia, "control", tmp);
165     g_free (tmp);
166
167     /* collect all other properties and add them to fmtp or attributes */
168     fmtp = g_string_new ("");
169     g_string_append_printf (fmtp, "%d ", caps_pt);
170     first = TRUE;
171     n_fields = gst_structure_n_fields (s);
172     for (j = 0; j < n_fields; j++) {
173       const gchar *fname, *fval;
174
175       fname = gst_structure_nth_field_name (s, j);
176
177       /* filter out standard properties */
178       if (!strcmp (fname, "media"))
179         continue;
180       if (!strcmp (fname, "payload"))
181         continue;
182       if (!strcmp (fname, "clock-rate"))
183         continue;
184       if (!strcmp (fname, "encoding-name"))
185         continue;
186       if (!strcmp (fname, "encoding-params"))
187         continue;
188       if (!strcmp (fname, "ssrc"))
189         continue;
190       if (!strcmp (fname, "clock-base"))
191         continue;
192       if (!strcmp (fname, "seqnum-base"))
193         continue;
194
195       if (g_str_has_prefix (fname, "a-")) {
196         /* attribute */
197         if ((fval = gst_structure_get_string (s, fname)))
198           gst_sdp_media_add_attribute (smedia, fname + 2, fval);
199         continue;
200       }
201       if (g_str_has_prefix (fname, "x-")) {
202         /* attribute */
203         if ((fval = gst_structure_get_string (s, fname)))
204           gst_sdp_media_add_attribute (smedia, fname, fval);
205         continue;
206       }
207
208       if ((fval = gst_structure_get_string (s, fname))) {
209         g_string_append_printf (fmtp, "%s%s=%s", first ? "" : ";", fname, fval);
210         first = FALSE;
211       }
212     }
213     if (!first) {
214       tmp = g_string_free (fmtp, FALSE);
215       gst_sdp_media_add_attribute (smedia, "fmtp", tmp);
216       g_free (tmp);
217     } else {
218       g_string_free (fmtp, TRUE);
219     }
220
221     update_sdp_from_tags (stream, smedia);
222
223     gst_sdp_message_add_media (sdp, smedia);
224     gst_sdp_media_free (smedia);
225     gst_caps_unref (caps);
226   }
227
228   {
229     GstNetTimeProvider *provider;
230
231     if ((provider =
232             gst_rtsp_media_get_time_provider (media, info->server_ip, 0))) {
233       GstClock *clock;
234       gchar *address, *str;
235       gint port;
236
237       g_object_get (provider, "clock", &clock, "address", &address, "port",
238           &port, NULL);
239
240       str = g_strdup_printf ("GstNetTimeProvider %s %s:%d %" G_GUINT64_FORMAT,
241           g_type_name (G_TYPE_FROM_INSTANCE (clock)), address, port,
242           gst_clock_get_time (clock));
243
244       gst_sdp_message_add_attribute (sdp, "x-gst-clock", str);
245       g_free (str);
246       gst_object_unref (clock);
247       g_free (address);
248       gst_object_unref (provider);
249     }
250   }
251
252   return TRUE;
253
254   /* ERRORS */
255 not_prepared:
256   {
257     GST_ERROR ("media %p is not prepared", media);
258     return FALSE;
259   }
260 }