annotate sdp.c @ 5501:89259491d541 libavformat

Always set the destination address even if no port was found. Patch by Martin Storsjo (martin AT martin DOT st)
author lucabe
date Thu, 07 Jan 2010 08:24:44 +0000
parents fc0a32a383d3
children f484a964bed1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
1 /*
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
2 * copyright (c) 2007 Luca Abeni
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
3 *
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
4 * This file is part of FFmpeg.
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
5 *
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
6 * FFmpeg is free software; you can redistribute it and/or
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
7 * modify it under the terms of the GNU Lesser General Public
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
8 * License as published by the Free Software Foundation; either
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
9 * version 2.1 of the License, or (at your option) any later version.
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
10 *
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
11 * FFmpeg is distributed in the hope that it will be useful,
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
14 * Lesser General Public License for more details.
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
15 *
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
16 * You should have received a copy of the GNU Lesser General Public
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
17 * License along with FFmpeg; if not, write to the Free Software
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
19 */
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
20
5500
fc0a32a383d3 Check the URL used for the SDP destination.
lucabe
parents: 5476
diff changeset
21 #include <string.h>
3286
6f61c3b36632 Use full path for #includes from another directory.
diego
parents: 3276
diff changeset
22 #include "libavutil/avstring.h"
6f61c3b36632 Use full path for #includes from another directory.
diego
parents: 3276
diff changeset
23 #include "libavutil/base64.h"
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
24 #include "avformat.h"
3788
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents: 3605
diff changeset
25 #include "internal.h"
2961
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
26 #include "avc.h"
2677
005c0fd8d3eb Explicitly include rtp.h (needed for rtp_get_payload_type())
lucabe
parents: 2541
diff changeset
27 #include "rtp.h"
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
28
4206
c3102b189cb6 Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 4049
diff changeset
29 #if CONFIG_RTP_MUXER
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
30 #define MAX_EXTRADATA_SIZE ((INT_MAX - 10) / 2)
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
31
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
32 struct sdp_session_level {
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
33 int sdp_version; /**< protocol version (currently 0) */
4421
a6849222fccc cosmetics: comment grammar/spelling fixes
diego
parents: 4360
diff changeset
34 int id; /**< session ID */
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
35 int version; /**< session version */
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
36 int start_time; /**< session start time (NTP time, in seconds),
4421
a6849222fccc cosmetics: comment grammar/spelling fixes
diego
parents: 4360
diff changeset
37 or 0 in case of permanent session */
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
38 int end_time; /**< session end time (NTP time, in seconds),
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
39 or 0 if the session is not bounded */
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
40 int ttl; /**< TTL, in case of multicast stream */
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
41 const char *user; /**< username of the session's creator */
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
42 const char *src_addr; /**< IP address of the machine from which the session was created */
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
43 const char *dst_addr; /**< destination IP address (can be multicast) */
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
44 const char *name; /**< session name (can be an empty string) */
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
45 };
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
46
4049
116a6910592c Rename functions in sdp.c for consistency's sake.
stefano
parents: 3788
diff changeset
47 static void sdp_write_address(char *buff, int size, const char *dest_addr, int ttl)
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
48 {
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
49 if (dest_addr) {
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
50 if (ttl > 0) {
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
51 av_strlcatf(buff, size, "c=IN IP4 %s/%d\r\n", dest_addr, ttl);
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
52 } else {
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
53 av_strlcatf(buff, size, "c=IN IP4 %s\r\n", dest_addr);
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
54 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
55 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
56 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
57
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
58 static void sdp_write_header(char *buff, int size, struct sdp_session_level *s)
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
59 {
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
60 av_strlcatf(buff, size, "v=%d\r\n"
3605
e8d0c5f2ee60 Fix a typo in sdp_write_header(): change "IPV4", which is not a valid
stefano
parents: 3548
diff changeset
61 "o=- %d %d IN IP4 %s\r\n"
5291
c17cb5ef9c61 Emit the SDP lines in the correct order
lucabe
parents: 4836
diff changeset
62 "s=%s\r\n",
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
63 s->sdp_version,
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
64 s->id, s->version, s->src_addr,
4360
f0facf61e48d use new metadata API in rtp muxer
aurel
parents: 4206
diff changeset
65 s->name);
4049
116a6910592c Rename functions in sdp.c for consistency's sake.
stefano
parents: 3788
diff changeset
66 sdp_write_address(buff, size, s->dst_addr, s->ttl);
5291
c17cb5ef9c61 Emit the SDP lines in the correct order
lucabe
parents: 4836
diff changeset
67 av_strlcatf(buff, size, "t=%d %d\r\n"
c17cb5ef9c61 Emit the SDP lines in the correct order
lucabe
parents: 4836
diff changeset
68 "a=tool:libavformat " AV_STRINGIFY(LIBAVFORMAT_VERSION) "\r\n",
c17cb5ef9c61 Emit the SDP lines in the correct order
lucabe
parents: 4836
diff changeset
69 s->start_time, s->end_time);
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
70 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
71
4049
116a6910592c Rename functions in sdp.c for consistency's sake.
stefano
parents: 3788
diff changeset
72 static int sdp_get_address(char *dest_addr, int size, int *ttl, const char *url)
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
73 {
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
74 int port;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
75 const char *p;
5500
fc0a32a383d3 Check the URL used for the SDP destination.
lucabe
parents: 5476
diff changeset
76 char proto[32];
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
77
5500
fc0a32a383d3 Check the URL used for the SDP destination.
lucabe
parents: 5476
diff changeset
78 url_split(proto, sizeof(proto), NULL, 0, dest_addr, size, &port, NULL, 0, url);
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
79
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
80 *ttl = 0;
5500
fc0a32a383d3 Check the URL used for the SDP destination.
lucabe
parents: 5476
diff changeset
81
fc0a32a383d3 Check the URL used for the SDP destination.
lucabe
parents: 5476
diff changeset
82 if (strcmp(proto, "rtp")) {
fc0a32a383d3 Check the URL used for the SDP destination.
lucabe
parents: 5476
diff changeset
83 /* The url isn't for the actual rtp sessions,
fc0a32a383d3 Check the URL used for the SDP destination.
lucabe
parents: 5476
diff changeset
84 * don't parse out anything else than the destination.
fc0a32a383d3 Check the URL used for the SDP destination.
lucabe
parents: 5476
diff changeset
85 */
fc0a32a383d3 Check the URL used for the SDP destination.
lucabe
parents: 5476
diff changeset
86 return 0;
fc0a32a383d3 Check the URL used for the SDP destination.
lucabe
parents: 5476
diff changeset
87 }
fc0a32a383d3 Check the URL used for the SDP destination.
lucabe
parents: 5476
diff changeset
88
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
89 p = strchr(url, '?');
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
90 if (p) {
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
91 char buff[64];
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
92 int is_multicast = find_info_tag(buff, sizeof(buff), "multicast", p);
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
93
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
94 if (is_multicast) {
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
95 if (find_info_tag(buff, sizeof(buff), "ttl", p)) {
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
96 *ttl = strtol(buff, NULL, 10);
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
97 } else {
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
98 *ttl = 5;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
99 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
100 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
101 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
102
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
103 return port;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
104 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
105
2961
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
106 #define MAX_PSET_SIZE 1024
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
107 static char *extradata2psets(AVCodecContext *c)
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
108 {
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
109 char *psets, *p;
3051
3ecfaa7d0f3b Missing const, fix warnings:
reimar
parents: 2961
diff changeset
110 const uint8_t *r;
2961
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
111 const char *pset_string = "; sprop-parameter-sets=";
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
112
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
113 if (c->extradata_size > MAX_EXTRADATA_SIZE) {
4421
a6849222fccc cosmetics: comment grammar/spelling fixes
diego
parents: 4360
diff changeset
114 av_log(c, AV_LOG_ERROR, "Too much extradata!\n");
2961
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
115
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
116 return NULL;
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
117 }
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
118
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
119 psets = av_mallocz(MAX_PSET_SIZE);
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
120 if (psets == NULL) {
4421
a6849222fccc cosmetics: comment grammar/spelling fixes
diego
parents: 4360
diff changeset
121 av_log(c, AV_LOG_ERROR, "Cannot allocate memory for the parameter sets.\n");
2961
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
122 return NULL;
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
123 }
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
124 memcpy(psets, pset_string, strlen(pset_string));
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
125 p = psets + strlen(pset_string);
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
126 r = ff_avc_find_startcode(c->extradata, c->extradata + c->extradata_size);
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
127 while (r < c->extradata + c->extradata_size) {
3051
3ecfaa7d0f3b Missing const, fix warnings:
reimar
parents: 2961
diff changeset
128 const uint8_t *r1;
4812
f7bc722a3a36 Only insert the SPS and PPS NALs in sprop-parameter-sets
lucabe
parents: 4502
diff changeset
129 uint8_t nal_type;
2961
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
130
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
131 while (!*(r++));
4812
f7bc722a3a36 Only insert the SPS and PPS NALs in sprop-parameter-sets
lucabe
parents: 4502
diff changeset
132 nal_type = *r & 0x1f;
2961
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
133 r1 = ff_avc_find_startcode(r, c->extradata + c->extradata_size);
4812
f7bc722a3a36 Only insert the SPS and PPS NALs in sprop-parameter-sets
lucabe
parents: 4502
diff changeset
134 if (nal_type != 7 && nal_type != 8) { /* Only output SPS and PPS */
f7bc722a3a36 Only insert the SPS and PPS NALs in sprop-parameter-sets
lucabe
parents: 4502
diff changeset
135 r = r1;
f7bc722a3a36 Only insert the SPS and PPS NALs in sprop-parameter-sets
lucabe
parents: 4502
diff changeset
136 continue;
f7bc722a3a36 Only insert the SPS and PPS NALs in sprop-parameter-sets
lucabe
parents: 4502
diff changeset
137 }
2961
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
138 if (p != (psets + strlen(pset_string))) {
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
139 *p = ',';
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
140 p++;
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
141 }
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
142 if (av_base64_encode(p, MAX_PSET_SIZE - (p - psets), r, r1 - r) == NULL) {
4421
a6849222fccc cosmetics: comment grammar/spelling fixes
diego
parents: 4360
diff changeset
143 av_log(c, AV_LOG_ERROR, "Cannot Base64-encode %td %td!\n", MAX_PSET_SIZE - (p - psets), r1 - r);
2961
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
144 av_free(psets);
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
145
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
146 return NULL;
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
147 }
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
148 p += strlen(p);
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
149 r = r1;
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
150 }
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
151
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
152 return psets;
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
153 }
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
154
2916
c2588e541432 Pass a proper context to av_log()
lucabe
parents: 2729
diff changeset
155 static char *extradata2config(AVCodecContext *c)
2521
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
156 {
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
157 char *config;
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
158
2916
c2588e541432 Pass a proper context to av_log()
lucabe
parents: 2729
diff changeset
159 if (c->extradata_size > MAX_EXTRADATA_SIZE) {
4421
a6849222fccc cosmetics: comment grammar/spelling fixes
diego
parents: 4360
diff changeset
160 av_log(c, AV_LOG_ERROR, "Too much extradata!\n");
2521
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
161
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
162 return NULL;
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
163 }
2916
c2588e541432 Pass a proper context to av_log()
lucabe
parents: 2729
diff changeset
164 config = av_malloc(10 + c->extradata_size * 2);
2521
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
165 if (config == NULL) {
4421
a6849222fccc cosmetics: comment grammar/spelling fixes
diego
parents: 4360
diff changeset
166 av_log(c, AV_LOG_ERROR, "Cannot allocate memory for the config info.\n");
2521
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
167 return NULL;
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
168 }
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
169 memcpy(config, "; config=", 9);
3788
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents: 3605
diff changeset
170 ff_data_to_hex(config + 9, c->extradata, c->extradata_size);
2916
c2588e541432 Pass a proper context to av_log()
lucabe
parents: 2729
diff changeset
171 config[9 + c->extradata_size * 2] = 0;
2521
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
172
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
173 return config;
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
174 }
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
175
4049
116a6910592c Rename functions in sdp.c for consistency's sake.
stefano
parents: 3788
diff changeset
176 static char *sdp_write_media_attributes(char *buff, int size, AVCodecContext *c, int payload_type)
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
177 {
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
178 char *config = NULL;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
179
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
180 switch (c->codec_id) {
2958
b489d30f8685 Add minimal support for H.264 video in the SDP generator
lucabe
parents: 2916
diff changeset
181 case CODEC_ID_H264:
2961
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
182 if (c->extradata_size) {
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
183 config = extradata2psets(c);
b9a3b81c5eb8 Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents: 2958
diff changeset
184 }
2958
b489d30f8685 Add minimal support for H.264 video in the SDP generator
lucabe
parents: 2916
diff changeset
185 av_strlcatf(buff, size, "a=rtpmap:%d H264/90000\r\n"
b489d30f8685 Add minimal support for H.264 video in the SDP generator
lucabe
parents: 2916
diff changeset
186 "a=fmtp:%d packetization-mode=1%s\r\n",
b489d30f8685 Add minimal support for H.264 video in the SDP generator
lucabe
parents: 2916
diff changeset
187 payload_type,
b489d30f8685 Add minimal support for H.264 video in the SDP generator
lucabe
parents: 2916
diff changeset
188 payload_type, config ? config : "");
b489d30f8685 Add minimal support for H.264 video in the SDP generator
lucabe
parents: 2916
diff changeset
189 break;
4814
730b214077ca Add support for H.263 video in the RTP muxer
lucabe
parents: 4812
diff changeset
190 case CODEC_ID_H263:
730b214077ca Add support for H.263 video in the RTP muxer
lucabe
parents: 4812
diff changeset
191 case CODEC_ID_H263P:
730b214077ca Add support for H.263 video in the RTP muxer
lucabe
parents: 4812
diff changeset
192 av_strlcatf(buff, size, "a=rtpmap:%d H263-2000/90000\r\n", payload_type);
730b214077ca Add support for H.263 video in the RTP muxer
lucabe
parents: 4812
diff changeset
193 break;
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
194 case CODEC_ID_MPEG4:
2541
90609bab3de3 Test extradata_size instead of the CODEC_FLAG_GLOBAL_HEADER flag to check if
lucabe
parents: 2521
diff changeset
195 if (c->extradata_size) {
2916
c2588e541432 Pass a proper context to av_log()
lucabe
parents: 2729
diff changeset
196 config = extradata2config(c);
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
197 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
198 av_strlcatf(buff, size, "a=rtpmap:%d MP4V-ES/90000\r\n"
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
199 "a=fmtp:%d profile-level-id=1%s\r\n",
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
200 payload_type,
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
201 payload_type, config ? config : "");
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
202 break;
2521
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
203 case CODEC_ID_AAC:
2541
90609bab3de3 Test extradata_size instead of the CODEC_FLAG_GLOBAL_HEADER flag to check if
lucabe
parents: 2521
diff changeset
204 if (c->extradata_size) {
2916
c2588e541432 Pass a proper context to av_log()
lucabe
parents: 2729
diff changeset
205 config = extradata2config(c);
2521
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
206 } else {
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
207 /* FIXME: maybe we can forge config information based on the
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
208 * codec parameters...
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
209 */
4421
a6849222fccc cosmetics: comment grammar/spelling fixes
diego
parents: 4360
diff changeset
210 av_log(c, AV_LOG_ERROR, "AAC with no global headers is currently not supported.\n");
2521
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
211 return NULL;
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
212 }
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
213 if (config == NULL) {
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
214 return NULL;
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
215 }
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
216 av_strlcatf(buff, size, "a=rtpmap:%d MPEG4-GENERIC/%d/%d\r\n"
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
217 "a=fmtp:%d profile-level-id=1;"
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
218 "mode=AAC-hbr;sizelength=13;indexlength=3;"
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
219 "indexdeltalength=3%s\r\n",
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
220 payload_type, c->sample_rate, c->channels,
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
221 payload_type, config);
776b5c2a1bf1 AAC support in the SDP generator
lucabe
parents: 2422
diff changeset
222 break;
2729
e808770ba0c6 Add support for some more audio formats
lucabe
parents: 2677
diff changeset
223 case CODEC_ID_PCM_S16BE:
5474
ff40a9607f5b Use RTP_PT_PRIVATE in sdp.c instead of hardcoding 96.
lucabe
parents: 5291
diff changeset
224 if (payload_type >= RTP_PT_PRIVATE)
2729
e808770ba0c6 Add support for some more audio formats
lucabe
parents: 2677
diff changeset
225 av_strlcatf(buff, size, "a=rtpmap:%d L16/%d/%d\r\n",
e808770ba0c6 Add support for some more audio formats
lucabe
parents: 2677
diff changeset
226 payload_type,
e808770ba0c6 Add support for some more audio formats
lucabe
parents: 2677
diff changeset
227 c->sample_rate, c->channels);
e808770ba0c6 Add support for some more audio formats
lucabe
parents: 2677
diff changeset
228 break;
e808770ba0c6 Add support for some more audio formats
lucabe
parents: 2677
diff changeset
229 case CODEC_ID_PCM_MULAW:
5474
ff40a9607f5b Use RTP_PT_PRIVATE in sdp.c instead of hardcoding 96.
lucabe
parents: 5291
diff changeset
230 if (payload_type >= RTP_PT_PRIVATE)
2729
e808770ba0c6 Add support for some more audio formats
lucabe
parents: 2677
diff changeset
231 av_strlcatf(buff, size, "a=rtpmap:%d PCMU/%d/%d\r\n",
e808770ba0c6 Add support for some more audio formats
lucabe
parents: 2677
diff changeset
232 payload_type,
e808770ba0c6 Add support for some more audio formats
lucabe
parents: 2677
diff changeset
233 c->sample_rate, c->channels);
e808770ba0c6 Add support for some more audio formats
lucabe
parents: 2677
diff changeset
234 break;
e808770ba0c6 Add support for some more audio formats
lucabe
parents: 2677
diff changeset
235 case CODEC_ID_PCM_ALAW:
5474
ff40a9607f5b Use RTP_PT_PRIVATE in sdp.c instead of hardcoding 96.
lucabe
parents: 5291
diff changeset
236 if (payload_type >= RTP_PT_PRIVATE)
2729
e808770ba0c6 Add support for some more audio formats
lucabe
parents: 2677
diff changeset
237 av_strlcatf(buff, size, "a=rtpmap:%d PCMA/%d/%d\r\n",
e808770ba0c6 Add support for some more audio formats
lucabe
parents: 2677
diff changeset
238 payload_type,
e808770ba0c6 Add support for some more audio formats
lucabe
parents: 2677
diff changeset
239 c->sample_rate, c->channels);
e808770ba0c6 Add support for some more audio formats
lucabe
parents: 2677
diff changeset
240 break;
4836
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
241 case CODEC_ID_AMR_NB:
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
242 av_strlcatf(buff, size, "a=rtpmap:%d AMR/%d/%d\r\n"
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
243 "a=fmtp:%d octet-align=1\r\n",
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
244 payload_type, c->sample_rate, c->channels,
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
245 payload_type);
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
246 break;
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
247 case CODEC_ID_AMR_WB:
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
248 av_strlcatf(buff, size, "a=rtpmap:%d AMR-WB/%d/%d\r\n"
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
249 "a=fmtp:%d octet-align=1\r\n",
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
250 payload_type, c->sample_rate, c->channels,
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
251 payload_type);
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
252 break;
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
253 default:
4421
a6849222fccc cosmetics: comment grammar/spelling fixes
diego
parents: 4360
diff changeset
254 /* Nothing special to do here... */
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
255 break;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
256 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
257
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
258 av_free(config);
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
259
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
260 return buff;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
261 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
262
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
263 static void sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, int port, int ttl)
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
264 {
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
265 const char *type;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
266 int payload_type;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
267
4502
daca5391106a Rename rtp_get_payload_type() to ff_rtp_get_payload_type(), as it is not
lucabe
parents: 4421
diff changeset
268 payload_type = ff_rtp_get_payload_type(c);
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
269 if (payload_type < 0) {
5476
770a7de45356 Use different dynamic payload types for audio and video.
lucabe
parents: 5474
diff changeset
270 payload_type = RTP_PT_PRIVATE + (c->codec_type == CODEC_TYPE_AUDIO);
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
271 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
272
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
273 switch (c->codec_type) {
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
274 case CODEC_TYPE_VIDEO : type = "video" ; break;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
275 case CODEC_TYPE_AUDIO : type = "audio" ; break;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
276 case CODEC_TYPE_SUBTITLE: type = "text" ; break;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
277 default : type = "application"; break;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
278 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
279
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
280 av_strlcatf(buff, size, "m=%s %d RTP/AVP %d\r\n", type, port, payload_type);
4049
116a6910592c Rename functions in sdp.c for consistency's sake.
stefano
parents: 3788
diff changeset
281 sdp_write_address(buff, size, dest_addr, ttl);
3113
f1aecf52bac5 Add some information about the stream bitrate, if available
lucabe
parents: 3051
diff changeset
282 if (c->bit_rate) {
f1aecf52bac5 Add some information about the stream bitrate, if available
lucabe
parents: 3051
diff changeset
283 av_strlcatf(buff, size, "b=AS:%d\r\n", c->bit_rate / 1000);
f1aecf52bac5 Add some information about the stream bitrate, if available
lucabe
parents: 3051
diff changeset
284 }
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
285
4049
116a6910592c Rename functions in sdp.c for consistency's sake.
stefano
parents: 3788
diff changeset
286 sdp_write_media_attributes(buff, size, c, payload_type);
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
287 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
288
2317
2adc9f64ecfb Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents: 2316
diff changeset
289 int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size)
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
290 {
4360
f0facf61e48d use new metadata API in rtp muxer
aurel
parents: 4206
diff changeset
291 AVMetadataTag *title = av_metadata_get(ac[0]->metadata, "title", NULL, 0);
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
292 struct sdp_session_level s;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
293 int i, j, port, ttl;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
294 char dst[32];
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
295
2422
f3a8f7d55bd1 Fill the buffer with 0 before writing an SDP in it
lucabe
parents: 2317
diff changeset
296 memset(buff, 0, size);
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
297 memset(&s, 0, sizeof(struct sdp_session_level));
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
298 s.user = "-";
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
299 s.src_addr = "127.0.0.1"; /* FIXME: Properly set this */
4360
f0facf61e48d use new metadata API in rtp muxer
aurel
parents: 4206
diff changeset
300 s.name = title ? title->value : "No Name";
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
301
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
302 port = 0;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
303 ttl = 0;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
304 if (n_files == 1) {
4049
116a6910592c Rename functions in sdp.c for consistency's sake.
stefano
parents: 3788
diff changeset
305 port = sdp_get_address(dst, sizeof(dst), &ttl, ac[0]->filename);
5501
89259491d541 Always set the destination address even if no port was found.
lucabe
parents: 5500
diff changeset
306 if (dst[0]) {
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
307 s.dst_addr = dst;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
308 s.ttl = ttl;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
309 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
310 }
2317
2adc9f64ecfb Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents: 2316
diff changeset
311 sdp_write_header(buff, size, &s);
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
312
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
313 dst[0] = 0;
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
314 for (i = 0; i < n_files; i++) {
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
315 if (n_files != 1) {
4049
116a6910592c Rename functions in sdp.c for consistency's sake.
stefano
parents: 3788
diff changeset
316 port = sdp_get_address(dst, sizeof(dst), &ttl, ac[i]->filename);
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
317 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
318 for (j = 0; j < ac[i]->nb_streams; j++) {
2317
2adc9f64ecfb Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents: 2316
diff changeset
319 sdp_write_media(buff, size,
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
320 ac[i]->streams[j]->codec, dst[0] ? dst : NULL,
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
321 (port > 0) ? port + j * 2 : 0, ttl);
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
322 if (port <= 0) {
2317
2adc9f64ecfb Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents: 2316
diff changeset
323 av_strlcatf(buff, size,
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
324 "a=control:streamid=%d\r\n", i + j);
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
325 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
326 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
327 }
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
328
2317
2adc9f64ecfb Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents: 2316
diff changeset
329 return 0;
2284
59d84b0f7d30 Introduce an SDP generator
lucabe
parents:
diff changeset
330 }
2316
5a4914f78109 Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents: 2284
diff changeset
331 #else
2317
2adc9f64ecfb Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents: 2316
diff changeset
332 int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size)
2316
5a4914f78109 Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents: 2284
diff changeset
333 {
2317
2adc9f64ecfb Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents: 2316
diff changeset
334 return AVERROR(ENOSYS);
2316
5a4914f78109 Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents: 2284
diff changeset
335 }
5a4914f78109 Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents: 2284
diff changeset
336 #endif