Mercurial > libavformat.hg
annotate sdp.c @ 6360:4f920c9dd895 libavformat
get rid of MAX_STREAMS limit in nutdec
author | aurel |
---|---|
date | Tue, 10 Aug 2010 16:36:36 +0000 |
parents | 3aa7765383b5 |
children | 0bcd6a8bc5d5 |
rev | line source |
---|---|
2284 | 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 | |
5500 | 21 #include <string.h> |
3286 | 22 #include "libavutil/avstring.h" |
23 #include "libavutil/base64.h" | |
6349 | 24 #include "libavcodec/xiph.h" |
2284 | 25 #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
|
26 #include "internal.h" |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
27 #include "avc.h" |
2677
005c0fd8d3eb
Explicitly include rtp.h (needed for rtp_get_payload_type())
lucabe
parents:
2541
diff
changeset
|
28 #include "rtp.h" |
5525
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
29 #if CONFIG_NETWORK |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
30 #include "network.h" |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
31 #endif |
2284 | 32 |
4206 | 33 #if CONFIG_RTP_MUXER |
2284 | 34 #define MAX_EXTRADATA_SIZE ((INT_MAX - 10) / 2) |
35 | |
36 struct sdp_session_level { | |
37 int sdp_version; /**< protocol version (currently 0) */ | |
4421 | 38 int id; /**< session ID */ |
2284 | 39 int version; /**< session version */ |
40 int start_time; /**< session start time (NTP time, in seconds), | |
4421 | 41 or 0 in case of permanent session */ |
2284 | 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 *dst_addr; /**< destination IP address (can be multicast) */ | |
48 const char *name; /**< session name (can be an empty string) */ | |
49 }; | |
50 | |
4049 | 51 static void sdp_write_address(char *buff, int size, const char *dest_addr, int ttl) |
2284 | 52 { |
53 if (dest_addr) { | |
54 if (ttl > 0) { | |
55 av_strlcatf(buff, size, "c=IN IP4 %s/%d\r\n", dest_addr, ttl); | |
56 } else { | |
57 av_strlcatf(buff, size, "c=IN IP4 %s\r\n", dest_addr); | |
58 } | |
59 } | |
60 } | |
61 | |
62 static void sdp_write_header(char *buff, int size, struct sdp_session_level *s) | |
63 { | |
64 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
|
65 "o=- %d %d IN IP4 %s\r\n" |
5291 | 66 "s=%s\r\n", |
2284 | 67 s->sdp_version, |
68 s->id, s->version, s->src_addr, | |
4360 | 69 s->name); |
4049 | 70 sdp_write_address(buff, size, s->dst_addr, s->ttl); |
5291 | 71 av_strlcatf(buff, size, "t=%d %d\r\n" |
72 "a=tool:libavformat " AV_STRINGIFY(LIBAVFORMAT_VERSION) "\r\n", | |
73 s->start_time, s->end_time); | |
2284 | 74 } |
75 | |
5525
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
76 #if CONFIG_NETWORK |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
77 static void resolve_destination(char *dest_addr, int size) |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
78 { |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
79 struct addrinfo hints, *ai, *cur; |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
80 |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
81 if (!dest_addr[0]) |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
82 return; |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
83 |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
84 /* Resolve the destination, since it must be written |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
85 * as a numeric IP address in the SDP. */ |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
86 |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
87 memset(&hints, 0, sizeof(hints)); |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
88 /* We only support IPv4 addresses in the SDP at the moment. */ |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
89 hints.ai_family = AF_INET; |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
90 if (getaddrinfo(dest_addr, NULL, &hints, &ai)) |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
91 return; |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
92 for (cur = ai; cur; cur = cur->ai_next) { |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
93 if (cur->ai_family == AF_INET) { |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
94 getnameinfo(cur->ai_addr, cur->ai_addrlen, dest_addr, size, |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
95 NULL, 0, NI_NUMERICHOST); |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
96 break; |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
97 } |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
98 } |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
99 freeaddrinfo(ai); |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
100 } |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
101 #else |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
102 static void resolve_destination(char *dest_addr, int size) |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
103 { |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
104 } |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
105 #endif |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
106 |
4049 | 107 static int sdp_get_address(char *dest_addr, int size, int *ttl, const char *url) |
2284 | 108 { |
109 int port; | |
110 const char *p; | |
5500 | 111 char proto[32]; |
2284 | 112 |
6182 | 113 av_url_split(proto, sizeof(proto), NULL, 0, dest_addr, size, &port, NULL, 0, url); |
2284 | 114 |
115 *ttl = 0; | |
5500 | 116 |
117 if (strcmp(proto, "rtp")) { | |
118 /* The url isn't for the actual rtp sessions, | |
119 * don't parse out anything else than the destination. | |
120 */ | |
121 return 0; | |
122 } | |
123 | |
2284 | 124 p = strchr(url, '?'); |
125 if (p) { | |
126 char buff[64]; | |
127 int is_multicast = find_info_tag(buff, sizeof(buff), "multicast", p); | |
128 | |
129 if (is_multicast) { | |
130 if (find_info_tag(buff, sizeof(buff), "ttl", p)) { | |
131 *ttl = strtol(buff, NULL, 10); | |
132 } else { | |
133 *ttl = 5; | |
134 } | |
135 } | |
136 } | |
137 | |
138 return port; | |
139 } | |
140 | |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
141 #define MAX_PSET_SIZE 1024 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
142 static char *extradata2psets(AVCodecContext *c) |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
143 { |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
144 char *psets, *p; |
3051 | 145 const uint8_t *r; |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
146 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
|
147 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
148 if (c->extradata_size > MAX_EXTRADATA_SIZE) { |
4421 | 149 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
|
150 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
151 return NULL; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
152 } |
6119
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
153 if (c->extradata[0] == 1) { |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
154 uint8_t *dummy_p; |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
155 int dummy_int; |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
156 AVBitStreamFilterContext *bsfc= av_bitstream_filter_init("h264_mp4toannexb"); |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
157 |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
158 if (!bsfc) { |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
159 av_log(c, AV_LOG_ERROR, "Cannot open the h264_mp4toannexb BSF!\n"); |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
160 |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
161 return NULL; |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
162 } |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
163 av_bitstream_filter_filter(bsfc, c, NULL, &dummy_p, &dummy_int, NULL, 0, 0); |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
164 av_bitstream_filter_close(bsfc); |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
165 } |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
166 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
167 psets = av_mallocz(MAX_PSET_SIZE); |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
168 if (psets == NULL) { |
4421 | 169 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
|
170 return NULL; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
171 } |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
172 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
|
173 p = psets + strlen(pset_string); |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
174 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
|
175 while (r < c->extradata + c->extradata_size) { |
3051 | 176 const uint8_t *r1; |
4812
f7bc722a3a36
Only insert the SPS and PPS NALs in sprop-parameter-sets
lucabe
parents:
4502
diff
changeset
|
177 uint8_t nal_type; |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
178 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
179 while (!*(r++)); |
4812
f7bc722a3a36
Only insert the SPS and PPS NALs in sprop-parameter-sets
lucabe
parents:
4502
diff
changeset
|
180 nal_type = *r & 0x1f; |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
181 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
|
182 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
|
183 r = r1; |
f7bc722a3a36
Only insert the SPS and PPS NALs in sprop-parameter-sets
lucabe
parents:
4502
diff
changeset
|
184 continue; |
f7bc722a3a36
Only insert the SPS and PPS NALs in sprop-parameter-sets
lucabe
parents:
4502
diff
changeset
|
185 } |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
186 if (p != (psets + strlen(pset_string))) { |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
187 *p = ','; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
188 p++; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
189 } |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
190 if (av_base64_encode(p, MAX_PSET_SIZE - (p - psets), r, r1 - r) == NULL) { |
4421 | 191 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
|
192 av_free(psets); |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
193 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
194 return NULL; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
195 } |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
196 p += strlen(p); |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
197 r = r1; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
198 } |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
199 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
200 return psets; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
201 } |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
202 |
2916 | 203 static char *extradata2config(AVCodecContext *c) |
2521 | 204 { |
205 char *config; | |
206 | |
2916 | 207 if (c->extradata_size > MAX_EXTRADATA_SIZE) { |
4421 | 208 av_log(c, AV_LOG_ERROR, "Too much extradata!\n"); |
2521 | 209 |
210 return NULL; | |
211 } | |
2916 | 212 config = av_malloc(10 + c->extradata_size * 2); |
2521 | 213 if (config == NULL) { |
4421 | 214 av_log(c, AV_LOG_ERROR, "Cannot allocate memory for the config info.\n"); |
2521 | 215 return NULL; |
216 } | |
217 memcpy(config, "; config=", 9); | |
5883 | 218 ff_data_to_hex(config + 9, c->extradata, c->extradata_size, 0); |
2916 | 219 config[9 + c->extradata_size * 2] = 0; |
2521 | 220 |
221 return config; | |
222 } | |
223 | |
6349 | 224 static char *xiph_extradata2config(AVCodecContext *c) |
225 { | |
226 char *config, *encoded_config; | |
227 uint8_t *header_start[3]; | |
228 int headers_len, header_len[3], config_len; | |
229 int first_header_size; | |
230 | |
231 switch (c->codec_id) { | |
232 case CODEC_ID_THEORA: | |
233 first_header_size = 42; | |
234 break; | |
235 case CODEC_ID_VORBIS: | |
236 first_header_size = 30; | |
237 break; | |
238 default: | |
239 av_log(c, AV_LOG_ERROR, "Unsupported Xiph codec ID\n"); | |
240 return NULL; | |
241 } | |
242 | |
243 if (ff_split_xiph_headers(c->extradata, c->extradata_size, | |
244 first_header_size, header_start, | |
245 header_len) < 0) { | |
246 av_log(c, AV_LOG_ERROR, "Extradata corrupt.\n"); | |
247 return NULL; | |
248 } | |
249 | |
250 headers_len = header_len[0] + header_len[2]; | |
251 config_len = 4 + // count | |
252 3 + // ident | |
253 2 + // packet size | |
254 1 + // header count | |
255 2 + // header size | |
256 headers_len; // and the rest | |
257 | |
258 config = av_malloc(config_len); | |
259 if (!config) | |
260 goto xiph_fail; | |
261 | |
262 encoded_config = av_malloc(AV_BASE64_SIZE(config_len)); | |
263 if (!encoded_config) { | |
264 av_free(config); | |
265 goto xiph_fail; | |
266 } | |
267 | |
268 config[0] = config[1] = config[2] = 0; | |
269 config[3] = 1; | |
6355 | 270 config[4] = (RTP_XIPH_IDENT >> 16) & 0xff; |
271 config[5] = (RTP_XIPH_IDENT >> 8) & 0xff; | |
272 config[6] = (RTP_XIPH_IDENT ) & 0xff; | |
6349 | 273 config[7] = (headers_len >> 8) & 0xff; |
274 config[8] = headers_len & 0xff; | |
275 config[9] = 2; | |
276 config[10] = header_len[0]; | |
277 config[11] = 0; // size of comment header; nonexistent | |
278 memcpy(config + 12, header_start[0], header_len[0]); | |
279 memcpy(config + 12 + header_len[0], header_start[2], header_len[2]); | |
280 | |
281 av_base64_encode(encoded_config, AV_BASE64_SIZE(config_len), | |
282 config, config_len); | |
283 av_free(config); | |
284 | |
285 return encoded_config; | |
286 | |
287 xiph_fail: | |
288 av_log(c, AV_LOG_ERROR, | |
289 "Not enough memory for configuration string\n"); | |
290 return NULL; | |
291 } | |
292 | |
4049 | 293 static char *sdp_write_media_attributes(char *buff, int size, AVCodecContext *c, int payload_type) |
2284 | 294 { |
295 char *config = NULL; | |
296 | |
297 switch (c->codec_id) { | |
2958
b489d30f8685
Add minimal support for H.264 video in the SDP generator
lucabe
parents:
2916
diff
changeset
|
298 case CODEC_ID_H264: |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
299 if (c->extradata_size) { |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
300 config = extradata2psets(c); |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
301 } |
2958
b489d30f8685
Add minimal support for H.264 video in the SDP generator
lucabe
parents:
2916
diff
changeset
|
302 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
|
303 "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
|
304 payload_type, |
b489d30f8685
Add minimal support for H.264 video in the SDP generator
lucabe
parents:
2916
diff
changeset
|
305 payload_type, config ? config : ""); |
b489d30f8685
Add minimal support for H.264 video in the SDP generator
lucabe
parents:
2916
diff
changeset
|
306 break; |
4814 | 307 case CODEC_ID_H263: |
308 case CODEC_ID_H263P: | |
309 av_strlcatf(buff, size, "a=rtpmap:%d H263-2000/90000\r\n", payload_type); | |
310 break; | |
2284 | 311 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
|
312 if (c->extradata_size) { |
2916 | 313 config = extradata2config(c); |
2284 | 314 } |
315 av_strlcatf(buff, size, "a=rtpmap:%d MP4V-ES/90000\r\n" | |
316 "a=fmtp:%d profile-level-id=1%s\r\n", | |
317 payload_type, | |
318 payload_type, config ? config : ""); | |
319 break; | |
2521 | 320 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
|
321 if (c->extradata_size) { |
2916 | 322 config = extradata2config(c); |
2521 | 323 } else { |
324 /* FIXME: maybe we can forge config information based on the | |
325 * codec parameters... | |
326 */ | |
4421 | 327 av_log(c, AV_LOG_ERROR, "AAC with no global headers is currently not supported.\n"); |
2521 | 328 return NULL; |
329 } | |
330 if (config == NULL) { | |
331 return NULL; | |
332 } | |
333 av_strlcatf(buff, size, "a=rtpmap:%d MPEG4-GENERIC/%d/%d\r\n" | |
334 "a=fmtp:%d profile-level-id=1;" | |
335 "mode=AAC-hbr;sizelength=13;indexlength=3;" | |
336 "indexdeltalength=3%s\r\n", | |
337 payload_type, c->sample_rate, c->channels, | |
338 payload_type, config); | |
339 break; | |
2729 | 340 case CODEC_ID_PCM_S16BE: |
5474
ff40a9607f5b
Use RTP_PT_PRIVATE in sdp.c instead of hardcoding 96.
lucabe
parents:
5291
diff
changeset
|
341 if (payload_type >= RTP_PT_PRIVATE) |
2729 | 342 av_strlcatf(buff, size, "a=rtpmap:%d L16/%d/%d\r\n", |
343 payload_type, | |
344 c->sample_rate, c->channels); | |
345 break; | |
346 case CODEC_ID_PCM_MULAW: | |
5474
ff40a9607f5b
Use RTP_PT_PRIVATE in sdp.c instead of hardcoding 96.
lucabe
parents:
5291
diff
changeset
|
347 if (payload_type >= RTP_PT_PRIVATE) |
2729 | 348 av_strlcatf(buff, size, "a=rtpmap:%d PCMU/%d/%d\r\n", |
349 payload_type, | |
350 c->sample_rate, c->channels); | |
351 break; | |
352 case CODEC_ID_PCM_ALAW: | |
5474
ff40a9607f5b
Use RTP_PT_PRIVATE in sdp.c instead of hardcoding 96.
lucabe
parents:
5291
diff
changeset
|
353 if (payload_type >= RTP_PT_PRIVATE) |
2729 | 354 av_strlcatf(buff, size, "a=rtpmap:%d PCMA/%d/%d\r\n", |
355 payload_type, | |
356 c->sample_rate, c->channels); | |
357 break; | |
4836 | 358 case CODEC_ID_AMR_NB: |
359 av_strlcatf(buff, size, "a=rtpmap:%d AMR/%d/%d\r\n" | |
360 "a=fmtp:%d octet-align=1\r\n", | |
361 payload_type, c->sample_rate, c->channels, | |
362 payload_type); | |
363 break; | |
364 case CODEC_ID_AMR_WB: | |
365 av_strlcatf(buff, size, "a=rtpmap:%d AMR-WB/%d/%d\r\n" | |
366 "a=fmtp:%d octet-align=1\r\n", | |
367 payload_type, c->sample_rate, c->channels, | |
368 payload_type); | |
369 break; | |
6349 | 370 case CODEC_ID_VORBIS: |
371 if (c->extradata_size) | |
372 config = xiph_extradata2config(c); | |
373 else | |
374 av_log(c, AV_LOG_ERROR, "Vorbis configuration info missing\n"); | |
375 if (!config) | |
376 return NULL; | |
377 | |
378 av_strlcatf(buff, size, "a=rtpmap:%d vorbis/%d/%d\r\n" | |
379 "a=fmtp:%d configuration=%s\r\n", | |
380 payload_type, c->sample_rate, c->channels, | |
381 payload_type, config); | |
382 break; | |
383 case CODEC_ID_THEORA: { | |
384 const char *pix_fmt; | |
385 if (c->extradata_size) | |
386 config = xiph_extradata2config(c); | |
387 else | |
388 av_log(c, AV_LOG_ERROR, "Theora configuation info missing\n"); | |
389 if (!config) | |
390 return NULL; | |
391 | |
392 switch (c->pix_fmt) { | |
393 case PIX_FMT_YUV420P: | |
394 pix_fmt = "YCbCr-4:2:0"; | |
395 break; | |
396 case PIX_FMT_YUV422P: | |
397 pix_fmt = "YCbCr-4:2:2"; | |
398 break; | |
399 case PIX_FMT_YUV444P: | |
400 pix_fmt = "YCbCr-4:4:4"; | |
401 break; | |
402 default: | |
403 av_log(c, AV_LOG_ERROR, "Unsupported pixel format.\n"); | |
404 return NULL; | |
405 } | |
406 | |
407 av_strlcatf(buff, size, "a=rtpmap:%d theora/90000\r\n" | |
408 "a=fmtp:%d delivery-method=inline; " | |
409 "width=%d; height=%d; sampling=%s; " | |
410 "configuration=%s\r\n", | |
411 payload_type, payload_type, | |
412 c->width, c->height, pix_fmt, config); | |
413 break; | |
414 } | |
2284 | 415 default: |
4421 | 416 /* Nothing special to do here... */ |
2284 | 417 break; |
418 } | |
419 | |
420 av_free(config); | |
421 | |
422 return buff; | |
423 } | |
424 | |
6009 | 425 void ff_sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, int port, int ttl) |
2284 | 426 { |
427 const char *type; | |
428 int payload_type; | |
429 | |
4502
daca5391106a
Rename rtp_get_payload_type() to ff_rtp_get_payload_type(), as it is not
lucabe
parents:
4421
diff
changeset
|
430 payload_type = ff_rtp_get_payload_type(c); |
2284 | 431 if (payload_type < 0) { |
5910
536e5527c1e0
Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents:
5883
diff
changeset
|
432 payload_type = RTP_PT_PRIVATE + (c->codec_type == AVMEDIA_TYPE_AUDIO); |
2284 | 433 } |
434 | |
435 switch (c->codec_type) { | |
5910
536e5527c1e0
Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents:
5883
diff
changeset
|
436 case AVMEDIA_TYPE_VIDEO : type = "video" ; break; |
536e5527c1e0
Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents:
5883
diff
changeset
|
437 case AVMEDIA_TYPE_AUDIO : type = "audio" ; break; |
536e5527c1e0
Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents:
5883
diff
changeset
|
438 case AVMEDIA_TYPE_SUBTITLE: type = "text" ; break; |
2284 | 439 default : type = "application"; break; |
440 } | |
441 | |
442 av_strlcatf(buff, size, "m=%s %d RTP/AVP %d\r\n", type, port, payload_type); | |
4049 | 443 sdp_write_address(buff, size, dest_addr, ttl); |
3113
f1aecf52bac5
Add some information about the stream bitrate, if available
lucabe
parents:
3051
diff
changeset
|
444 if (c->bit_rate) { |
f1aecf52bac5
Add some information about the stream bitrate, if available
lucabe
parents:
3051
diff
changeset
|
445 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
|
446 } |
2284 | 447 |
4049 | 448 sdp_write_media_attributes(buff, size, c, payload_type); |
2284 | 449 } |
450 | |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
451 int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size) |
2284 | 452 { |
4360 | 453 AVMetadataTag *title = av_metadata_get(ac[0]->metadata, "title", NULL, 0); |
2284 | 454 struct sdp_session_level s; |
455 int i, j, port, ttl; | |
456 char dst[32]; | |
457 | |
2422 | 458 memset(buff, 0, size); |
2284 | 459 memset(&s, 0, sizeof(struct sdp_session_level)); |
460 s.user = "-"; | |
461 s.src_addr = "127.0.0.1"; /* FIXME: Properly set this */ | |
4360 | 462 s.name = title ? title->value : "No Name"; |
2284 | 463 |
464 port = 0; | |
465 ttl = 0; | |
466 if (n_files == 1) { | |
4049 | 467 port = sdp_get_address(dst, sizeof(dst), &ttl, ac[0]->filename); |
5525
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
468 resolve_destination(dst, sizeof(dst)); |
5501
89259491d541
Always set the destination address even if no port was found.
lucabe
parents:
5500
diff
changeset
|
469 if (dst[0]) { |
2284 | 470 s.dst_addr = dst; |
471 s.ttl = ttl; | |
472 } | |
473 } | |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
474 sdp_write_header(buff, size, &s); |
2284 | 475 |
476 dst[0] = 0; | |
477 for (i = 0; i < n_files; i++) { | |
478 if (n_files != 1) { | |
4049 | 479 port = sdp_get_address(dst, sizeof(dst), &ttl, ac[i]->filename); |
5525
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
480 resolve_destination(dst, sizeof(dst)); |
2284 | 481 } |
482 for (j = 0; j < ac[i]->nb_streams; j++) { | |
6009 | 483 ff_sdp_write_media(buff, size, |
2284 | 484 ac[i]->streams[j]->codec, dst[0] ? dst : NULL, |
485 (port > 0) ? port + j * 2 : 0, ttl); | |
486 if (port <= 0) { | |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
487 av_strlcatf(buff, size, |
2284 | 488 "a=control:streamid=%d\r\n", i + j); |
489 } | |
490 } | |
491 } | |
492 | |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
493 return 0; |
2284 | 494 } |
2316
5a4914f78109
Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents:
2284
diff
changeset
|
495 #else |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
496 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
|
497 { |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
498 return AVERROR(ENOSYS); |
2316
5a4914f78109
Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents:
2284
diff
changeset
|
499 } |
6009 | 500 |
501 void ff_sdp_write_media(char *buff, int size, AVCodecContext *c, | |
502 const char *dest_addr, int port, int ttl) | |
503 { | |
504 } | |
2316
5a4914f78109
Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents:
2284
diff
changeset
|
505 #endif |