]> git.sesse.net Git - ffmpeg/blob - libavformat/sdp.c
Fix ALLPROGS_G so that *_g binaries get cleaned properly
[ffmpeg] / libavformat / sdp.c
1 /*
2  * copyright (c) 2007 Luca Abeni
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include <string.h>
22 #include "libavutil/avstring.h"
23 #include "libavutil/base64.h"
24 #include "libavcodec/xiph.h"
25 #include "avformat.h"
26 #include "internal.h"
27 #include "avc.h"
28 #include "rtp.h"
29 #if CONFIG_NETWORK
30 #include "network.h"
31 #endif
32
33 #if CONFIG_RTP_MUXER
34 #define MAX_EXTRADATA_SIZE ((INT_MAX - 10) / 2)
35
36 struct sdp_session_level {
37     int sdp_version;      /**< protocol version (currently 0) */
38     int id;               /**< session ID */
39     int version;          /**< session version */
40     int start_time;       /**< session start time (NTP time, in seconds),
41                                or 0 in case of permanent session */
42     int end_time;         /**< session end time (NTP time, in seconds),
43                                or 0 if the session is not bounded */
44     int ttl;              /**< TTL, in case of multicast stream */
45     const char *user;     /**< username of the session's creator */
46     const char *src_addr; /**< IP address of the machine from which the session was created */
47     const char *src_type; /**< address type of src_addr */
48     const char *dst_addr; /**< destination IP address (can be multicast) */
49     const char *dst_type; /**< destination IP address type */
50     const char *name;     /**< session name (can be an empty string) */
51 };
52
53 static void sdp_write_address(char *buff, int size, const char *dest_addr,
54                               const char *dest_type, int ttl)
55 {
56     if (dest_addr) {
57         if (!dest_type)
58             dest_type = "IP4";
59         if (ttl > 0 && !strcmp(dest_type, "IP4")) {
60             /* The TTL should only be specified for IPv4 multicast addresses,
61              * not for IPv6. */
62             av_strlcatf(buff, size, "c=IN %s %s/%d\r\n", dest_type, dest_addr, ttl);
63         } else {
64             av_strlcatf(buff, size, "c=IN %s %s\r\n", dest_type, dest_addr);
65         }
66     }
67 }
68
69 static void sdp_write_header(char *buff, int size, struct sdp_session_level *s)
70 {
71     av_strlcatf(buff, size, "v=%d\r\n"
72                             "o=- %d %d IN %s %s\r\n"
73                             "s=%s\r\n",
74                             s->sdp_version,
75                             s->id, s->version, s->src_type, s->src_addr,
76                             s->name);
77     sdp_write_address(buff, size, s->dst_addr, s->dst_type, s->ttl);
78     av_strlcatf(buff, size, "t=%d %d\r\n"
79                             "a=tool:libavformat " AV_STRINGIFY(LIBAVFORMAT_VERSION) "\r\n",
80                             s->start_time, s->end_time);
81 }
82
83 #if CONFIG_NETWORK
84 static int resolve_destination(char *dest_addr, int size, char *type,
85                                int type_size)
86 {
87     struct addrinfo hints, *ai;
88     int is_multicast;
89
90     av_strlcpy(type, "IP4", type_size);
91     if (!dest_addr[0])
92         return 0;
93
94     /* Resolve the destination, since it must be written
95      * as a numeric IP address in the SDP. */
96
97     memset(&hints, 0, sizeof(hints));
98     if (getaddrinfo(dest_addr, NULL, &hints, &ai))
99         return 0;
100     getnameinfo(ai->ai_addr, ai->ai_addrlen, dest_addr, size,
101                 NULL, 0, NI_NUMERICHOST);
102 #ifdef AF_INET6
103     if (ai->ai_family == AF_INET6)
104         av_strlcpy(type, "IP6", type_size);
105 #endif
106     is_multicast = ff_is_multicast_address(ai->ai_addr);
107     freeaddrinfo(ai);
108     return is_multicast;
109 }
110 #else
111 static int resolve_destination(char *dest_addr, int size, char *type,
112                                int type_size)
113 {
114     return 0;
115 }
116 #endif
117
118 static int sdp_get_address(char *dest_addr, int size, int *ttl, const char *url)
119 {
120     int port;
121     const char *p;
122     char proto[32];
123
124     av_url_split(proto, sizeof(proto), NULL, 0, dest_addr, size, &port, NULL, 0, url);
125
126     *ttl = 0;
127
128     if (strcmp(proto, "rtp")) {
129         /* The url isn't for the actual rtp sessions,
130          * don't parse out anything else than the destination.
131          */
132         return 0;
133     }
134
135     p = strchr(url, '?');
136     if (p) {
137         char buff[64];
138
139         if (find_info_tag(buff, sizeof(buff), "ttl", p)) {
140             *ttl = strtol(buff, NULL, 10);
141         } else {
142             *ttl = 5;
143         }
144     }
145
146     return port;
147 }
148
149 #define MAX_PSET_SIZE 1024
150 static char *extradata2psets(AVCodecContext *c)
151 {
152     char *psets, *p;
153     const uint8_t *r;
154     const char *pset_string = "; sprop-parameter-sets=";
155
156     if (c->extradata_size > MAX_EXTRADATA_SIZE) {
157         av_log(c, AV_LOG_ERROR, "Too much extradata!\n");
158
159         return NULL;
160     }
161     if (c->extradata[0] == 1) {
162         uint8_t *dummy_p;
163         int dummy_int;
164         AVBitStreamFilterContext *bsfc= av_bitstream_filter_init("h264_mp4toannexb");
165
166         if (!bsfc) {
167             av_log(c, AV_LOG_ERROR, "Cannot open the h264_mp4toannexb BSF!\n");
168
169             return NULL;
170         }
171         av_bitstream_filter_filter(bsfc, c, NULL, &dummy_p, &dummy_int, NULL, 0, 0);
172         av_bitstream_filter_close(bsfc);
173     }
174
175     psets = av_mallocz(MAX_PSET_SIZE);
176     if (psets == NULL) {
177         av_log(c, AV_LOG_ERROR, "Cannot allocate memory for the parameter sets.\n");
178         return NULL;
179     }
180     memcpy(psets, pset_string, strlen(pset_string));
181     p = psets + strlen(pset_string);
182     r = ff_avc_find_startcode(c->extradata, c->extradata + c->extradata_size);
183     while (r < c->extradata + c->extradata_size) {
184         const uint8_t *r1;
185         uint8_t nal_type;
186
187         while (!*(r++));
188         nal_type = *r & 0x1f;
189         r1 = ff_avc_find_startcode(r, c->extradata + c->extradata_size);
190         if (nal_type != 7 && nal_type != 8) { /* Only output SPS and PPS */
191             r = r1;
192             continue;
193         }
194         if (p != (psets + strlen(pset_string))) {
195             *p = ',';
196             p++;
197         }
198         if (av_base64_encode(p, MAX_PSET_SIZE - (p - psets), r, r1 - r) == NULL) {
199             av_log(c, AV_LOG_ERROR, "Cannot Base64-encode %td %td!\n", MAX_PSET_SIZE - (p - psets), r1 - r);
200             av_free(psets);
201
202             return NULL;
203         }
204         p += strlen(p);
205         r = r1;
206     }
207
208     return psets;
209 }
210
211 static char *extradata2config(AVCodecContext *c)
212 {
213     char *config;
214
215     if (c->extradata_size > MAX_EXTRADATA_SIZE) {
216         av_log(c, AV_LOG_ERROR, "Too much extradata!\n");
217
218         return NULL;
219     }
220     config = av_malloc(10 + c->extradata_size * 2);
221     if (config == NULL) {
222         av_log(c, AV_LOG_ERROR, "Cannot allocate memory for the config info.\n");
223         return NULL;
224     }
225     memcpy(config, "; config=", 9);
226     ff_data_to_hex(config + 9, c->extradata, c->extradata_size, 0);
227     config[9 + c->extradata_size * 2] = 0;
228
229     return config;
230 }
231
232 static char *xiph_extradata2config(AVCodecContext *c)
233 {
234     char *config, *encoded_config;
235     uint8_t *header_start[3];
236     int headers_len, header_len[3], config_len;
237     int first_header_size;
238
239     switch (c->codec_id) {
240     case CODEC_ID_THEORA:
241         first_header_size = 42;
242         break;
243     case CODEC_ID_VORBIS:
244         first_header_size = 30;
245         break;
246     default:
247         av_log(c, AV_LOG_ERROR, "Unsupported Xiph codec ID\n");
248         return NULL;
249     }
250
251     if (ff_split_xiph_headers(c->extradata, c->extradata_size,
252                               first_header_size, header_start,
253                               header_len) < 0) {
254         av_log(c, AV_LOG_ERROR, "Extradata corrupt.\n");
255         return NULL;
256     }
257
258     headers_len = header_len[0] + header_len[2];
259     config_len = 4 +          // count
260                  3 +          // ident
261                  2 +          // packet size
262                  1 +          // header count
263                  2 +          // header size
264                  headers_len; // and the rest
265
266     config = av_malloc(config_len);
267     if (!config)
268         goto xiph_fail;
269
270     encoded_config = av_malloc(AV_BASE64_SIZE(config_len));
271     if (!encoded_config) {
272         av_free(config);
273         goto xiph_fail;
274     }
275
276     config[0] = config[1] = config[2] = 0;
277     config[3] = 1;
278     config[4] = (RTP_XIPH_IDENT >> 16) & 0xff;
279     config[5] = (RTP_XIPH_IDENT >>  8) & 0xff;
280     config[6] = (RTP_XIPH_IDENT      ) & 0xff;
281     config[7] = (headers_len >> 8) & 0xff;
282     config[8] = headers_len & 0xff;
283     config[9] = 2;
284     config[10] = header_len[0];
285     config[11] = 0; // size of comment header; nonexistent
286     memcpy(config + 12, header_start[0], header_len[0]);
287     memcpy(config + 12 + header_len[0], header_start[2], header_len[2]);
288
289     av_base64_encode(encoded_config, AV_BASE64_SIZE(config_len),
290                      config, config_len);
291     av_free(config);
292
293     return encoded_config;
294
295 xiph_fail:
296     av_log(c, AV_LOG_ERROR,
297            "Not enough memory for configuration string\n");
298     return NULL;
299 }
300
301 static char *sdp_write_media_attributes(char *buff, int size, AVCodecContext *c, int payload_type)
302 {
303     char *config = NULL;
304
305     switch (c->codec_id) {
306         case CODEC_ID_H264:
307             if (c->extradata_size) {
308                 config = extradata2psets(c);
309             }
310             av_strlcatf(buff, size, "a=rtpmap:%d H264/90000\r\n"
311                                     "a=fmtp:%d packetization-mode=1%s\r\n",
312                                      payload_type,
313                                      payload_type, config ? config : "");
314             break;
315         case CODEC_ID_H263:
316         case CODEC_ID_H263P:
317             /* a=framesize is required by 3GPP TS 26.234 (PSS). It
318              * actually specifies the maximum video size, but we only know
319              * the current size. This is required for playback on Android
320              * stagefright and on Samsung bada. */
321             av_strlcatf(buff, size, "a=rtpmap:%d H263-2000/90000\r\n"
322                                     "a=framesize:%d %d-%d\r\n",
323                                     payload_type,
324                                     payload_type, c->width, c->height);
325             break;
326         case CODEC_ID_MPEG4:
327             if (c->extradata_size) {
328                 config = extradata2config(c);
329             }
330             av_strlcatf(buff, size, "a=rtpmap:%d MP4V-ES/90000\r\n"
331                                     "a=fmtp:%d profile-level-id=1%s\r\n",
332                                      payload_type,
333                                      payload_type, config ? config : "");
334             break;
335         case CODEC_ID_AAC:
336             if (c->extradata_size) {
337                 config = extradata2config(c);
338             } else {
339                 /* FIXME: maybe we can forge config information based on the
340                  *        codec parameters...
341                  */
342                 av_log(c, AV_LOG_ERROR, "AAC with no global headers is currently not supported.\n");
343                 return NULL;
344             }
345             if (config == NULL) {
346                 return NULL;
347             }
348             av_strlcatf(buff, size, "a=rtpmap:%d MPEG4-GENERIC/%d/%d\r\n"
349                                     "a=fmtp:%d profile-level-id=1;"
350                                     "mode=AAC-hbr;sizelength=13;indexlength=3;"
351                                     "indexdeltalength=3%s\r\n",
352                                      payload_type, c->sample_rate, c->channels,
353                                      payload_type, config);
354             break;
355         case CODEC_ID_PCM_S16BE:
356             if (payload_type >= RTP_PT_PRIVATE)
357                 av_strlcatf(buff, size, "a=rtpmap:%d L16/%d/%d\r\n",
358                                          payload_type,
359                                          c->sample_rate, c->channels);
360             break;
361         case CODEC_ID_PCM_MULAW:
362             if (payload_type >= RTP_PT_PRIVATE)
363                 av_strlcatf(buff, size, "a=rtpmap:%d PCMU/%d/%d\r\n",
364                                          payload_type,
365                                          c->sample_rate, c->channels);
366             break;
367         case CODEC_ID_PCM_ALAW:
368             if (payload_type >= RTP_PT_PRIVATE)
369                 av_strlcatf(buff, size, "a=rtpmap:%d PCMA/%d/%d\r\n",
370                                          payload_type,
371                                          c->sample_rate, c->channels);
372             break;
373         case CODEC_ID_AMR_NB:
374             av_strlcatf(buff, size, "a=rtpmap:%d AMR/%d/%d\r\n"
375                                     "a=fmtp:%d octet-align=1\r\n",
376                                      payload_type, c->sample_rate, c->channels,
377                                      payload_type);
378             break;
379         case CODEC_ID_AMR_WB:
380             av_strlcatf(buff, size, "a=rtpmap:%d AMR-WB/%d/%d\r\n"
381                                     "a=fmtp:%d octet-align=1\r\n",
382                                      payload_type, c->sample_rate, c->channels,
383                                      payload_type);
384             break;
385         case CODEC_ID_VORBIS:
386             if (c->extradata_size)
387                 config = xiph_extradata2config(c);
388             else
389                 av_log(c, AV_LOG_ERROR, "Vorbis configuration info missing\n");
390             if (!config)
391                 return NULL;
392
393             av_strlcatf(buff, size, "a=rtpmap:%d vorbis/%d/%d\r\n"
394                                     "a=fmtp:%d configuration=%s\r\n",
395                                     payload_type, c->sample_rate, c->channels,
396                                     payload_type, config);
397             break;
398         case CODEC_ID_THEORA: {
399             const char *pix_fmt;
400             if (c->extradata_size)
401                 config = xiph_extradata2config(c);
402             else
403                 av_log(c, AV_LOG_ERROR, "Theora configuation info missing\n");
404             if (!config)
405                 return NULL;
406
407             switch (c->pix_fmt) {
408             case PIX_FMT_YUV420P:
409                 pix_fmt = "YCbCr-4:2:0";
410                 break;
411             case PIX_FMT_YUV422P:
412                 pix_fmt = "YCbCr-4:2:2";
413                 break;
414             case PIX_FMT_YUV444P:
415                 pix_fmt = "YCbCr-4:4:4";
416                 break;
417             default:
418                 av_log(c, AV_LOG_ERROR, "Unsupported pixel format.\n");
419                 return NULL;
420             }
421
422             av_strlcatf(buff, size, "a=rtpmap:%d theora/90000\r\n"
423                                     "a=fmtp:%d delivery-method=inline; "
424                                     "width=%d; height=%d; sampling=%s; "
425                                     "configuration=%s\r\n",
426                                     payload_type, payload_type,
427                                     c->width, c->height, pix_fmt, config);
428             break;
429         }
430         case CODEC_ID_VP8:
431             av_strlcatf(buff, size, "a=rtpmap:%d VP8/90000\r\n",
432                                      payload_type);
433             break;
434         case CODEC_ID_ADPCM_G722:
435             if (payload_type >= RTP_PT_PRIVATE)
436                 av_strlcatf(buff, size, "a=rtpmap:%d G722/%d/%d\r\n",
437                                          payload_type,
438                                          8000, c->channels);
439             break;
440         default:
441             /* Nothing special to do here... */
442             break;
443     }
444
445     av_free(config);
446
447     return buff;
448 }
449
450 void ff_sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, const char *dest_type, int port, int ttl)
451 {
452     const char *type;
453     int payload_type;
454
455     payload_type = ff_rtp_get_payload_type(c);
456     if (payload_type < 0) {
457         payload_type = RTP_PT_PRIVATE + (c->codec_type == AVMEDIA_TYPE_AUDIO);
458     }
459
460     switch (c->codec_type) {
461         case AVMEDIA_TYPE_VIDEO   : type = "video"      ; break;
462         case AVMEDIA_TYPE_AUDIO   : type = "audio"      ; break;
463         case AVMEDIA_TYPE_SUBTITLE: type = "text"       ; break;
464         default                 : type = "application"; break;
465     }
466
467     av_strlcatf(buff, size, "m=%s %d RTP/AVP %d\r\n", type, port, payload_type);
468     sdp_write_address(buff, size, dest_addr, dest_type, ttl);
469     if (c->bit_rate) {
470         av_strlcatf(buff, size, "b=AS:%d\r\n", c->bit_rate / 1000);
471     }
472
473     sdp_write_media_attributes(buff, size, c, payload_type);
474 }
475
476 int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size)
477 {
478     AVMetadataTag *title = av_metadata_get(ac[0]->metadata, "title", NULL, 0);
479     struct sdp_session_level s;
480     int i, j, port, ttl, is_multicast;
481     char dst[32], dst_type[5];
482
483     memset(buff, 0, size);
484     memset(&s, 0, sizeof(struct sdp_session_level));
485     s.user = "-";
486     s.src_addr = "127.0.0.1";    /* FIXME: Properly set this */
487     s.src_type = "IP4";
488     s.name = title ? title->value : "No Name";
489
490     port = 0;
491     ttl = 0;
492     if (n_files == 1) {
493         port = sdp_get_address(dst, sizeof(dst), &ttl, ac[0]->filename);
494         is_multicast = resolve_destination(dst, sizeof(dst), dst_type,
495                                            sizeof(dst_type));
496         if (!is_multicast)
497             ttl = 0;
498         if (dst[0]) {
499             s.dst_addr = dst;
500             s.dst_type = dst_type;
501             s.ttl = ttl;
502             if (!strcmp(dst_type, "IP6")) {
503                 s.src_addr = "::1";
504                 s.src_type = "IP6";
505             }
506         }
507     }
508     sdp_write_header(buff, size, &s);
509
510     dst[0] = 0;
511     for (i = 0; i < n_files; i++) {
512         if (n_files != 1) {
513             port = sdp_get_address(dst, sizeof(dst), &ttl, ac[i]->filename);
514             is_multicast = resolve_destination(dst, sizeof(dst), dst_type,
515                                                sizeof(dst_type));
516             if (!is_multicast)
517                 ttl = 0;
518         }
519         for (j = 0; j < ac[i]->nb_streams; j++) {
520             ff_sdp_write_media(buff, size,
521                                   ac[i]->streams[j]->codec, dst[0] ? dst : NULL,
522                                   dst_type, (port > 0) ? port + j * 2 : 0, ttl);
523             if (port <= 0) {
524                 av_strlcatf(buff, size,
525                                    "a=control:streamid=%d\r\n", i + j);
526             }
527         }
528     }
529
530     return 0;
531 }
532 #else
533 int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size)
534 {
535     return AVERROR(ENOSYS);
536 }
537
538 void ff_sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, const char *dest_type, int port, int ttl)
539 {
540 }
541 #endif