Commit | Line | Data |
---|---|---|
c5388c07 LA |
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 | ||
c47b0738 | 21 | #include <string.h> |
245976da DB |
22 | #include "libavutil/avstring.h" |
23 | #include "libavutil/base64.h" | |
c5388c07 | 24 | #include "avformat.h" |
f1c80e35 | 25 | #include "internal.h" |
29e35d67 | 26 | #include "avc.h" |
759d98d0 | 27 | #include "rtp.h" |
c5388c07 | 28 | |
b250f9c6 | 29 | #if CONFIG_RTP_MUXER |
c5388c07 LA |
30 | #define MAX_EXTRADATA_SIZE ((INT_MAX - 10) / 2) |
31 | ||
32 | struct sdp_session_level { | |
33 | int sdp_version; /**< protocol version (currently 0) */ | |
7be75dd7 | 34 | int id; /**< session ID */ |
c5388c07 LA |
35 | int version; /**< session version */ |
36 | int start_time; /**< session start time (NTP time, in seconds), | |
7be75dd7 | 37 | or 0 in case of permanent session */ |
c5388c07 LA |
38 | int end_time; /**< session end time (NTP time, in seconds), |
39 | or 0 if the session is not bounded */ | |
40 | int ttl; /**< TTL, in case of multicast stream */ | |
41 | const char *user; /**< username of the session's creator */ | |
42 | const char *src_addr; /**< IP address of the machine from which the session was created */ | |
43 | const char *dst_addr; /**< destination IP address (can be multicast) */ | |
44 | const char *name; /**< session name (can be an empty string) */ | |
45 | }; | |
46 | ||
91cd7eb6 | 47 | static void sdp_write_address(char *buff, int size, const char *dest_addr, int ttl) |
c5388c07 LA |
48 | { |
49 | if (dest_addr) { | |
50 | if (ttl > 0) { | |
51 | av_strlcatf(buff, size, "c=IN IP4 %s/%d\r\n", dest_addr, ttl); | |
52 | } else { | |
53 | av_strlcatf(buff, size, "c=IN IP4 %s\r\n", dest_addr); | |
54 | } | |
55 | } | |
56 | } | |
57 | ||
58 | static void sdp_write_header(char *buff, int size, struct sdp_session_level *s) | |
59 | { | |
60 | av_strlcatf(buff, size, "v=%d\r\n" | |
c16184e9 | 61 | "o=- %d %d IN IP4 %s\r\n" |
56e6f830 | 62 | "s=%s\r\n", |
c5388c07 LA |
63 | s->sdp_version, |
64 | s->id, s->version, s->src_addr, | |
f3650b23 | 65 | s->name); |
91cd7eb6 | 66 | sdp_write_address(buff, size, s->dst_addr, s->ttl); |
56e6f830 LA |
67 | av_strlcatf(buff, size, "t=%d %d\r\n" |
68 | "a=tool:libavformat " AV_STRINGIFY(LIBAVFORMAT_VERSION) "\r\n", | |
69 | s->start_time, s->end_time); | |
c5388c07 LA |
70 | } |
71 | ||
91cd7eb6 | 72 | static int sdp_get_address(char *dest_addr, int size, int *ttl, const char *url) |
c5388c07 LA |
73 | { |
74 | int port; | |
75 | const char *p; | |
c47b0738 | 76 | char proto[32]; |
c5388c07 | 77 | |
c47b0738 | 78 | url_split(proto, sizeof(proto), NULL, 0, dest_addr, size, &port, NULL, 0, url); |
c5388c07 LA |
79 | |
80 | *ttl = 0; | |
c47b0738 MS |
81 | |
82 | if (strcmp(proto, "rtp")) { | |
83 | /* The url isn't for the actual rtp sessions, | |
84 | * don't parse out anything else than the destination. | |
85 | */ | |
86 | return 0; | |
87 | } | |
88 | ||
c5388c07 LA |
89 | p = strchr(url, '?'); |
90 | if (p) { | |
91 | char buff[64]; | |
92 | int is_multicast = find_info_tag(buff, sizeof(buff), "multicast", p); | |
93 | ||
94 | if (is_multicast) { | |
95 | if (find_info_tag(buff, sizeof(buff), "ttl", p)) { | |
96 | *ttl = strtol(buff, NULL, 10); | |
97 | } else { | |
98 | *ttl = 5; | |
99 | } | |
100 | } | |
101 | } | |
102 | ||
103 | return port; | |
104 | } | |
105 | ||
29e35d67 LA |
106 | #define MAX_PSET_SIZE 1024 |
107 | static char *extradata2psets(AVCodecContext *c) | |
108 | { | |
109 | char *psets, *p; | |
a1fc4d4a | 110 | const uint8_t *r; |
29e35d67 LA |
111 | const char *pset_string = "; sprop-parameter-sets="; |
112 | ||
113 | if (c->extradata_size > MAX_EXTRADATA_SIZE) { | |
7be75dd7 | 114 | av_log(c, AV_LOG_ERROR, "Too much extradata!\n"); |
29e35d67 LA |
115 | |
116 | return NULL; | |
117 | } | |
118 | ||
119 | psets = av_mallocz(MAX_PSET_SIZE); | |
120 | if (psets == NULL) { | |
7be75dd7 | 121 | av_log(c, AV_LOG_ERROR, "Cannot allocate memory for the parameter sets.\n"); |
29e35d67 LA |
122 | return NULL; |
123 | } | |
124 | memcpy(psets, pset_string, strlen(pset_string)); | |
125 | p = psets + strlen(pset_string); | |
126 | r = ff_avc_find_startcode(c->extradata, c->extradata + c->extradata_size); | |
127 | while (r < c->extradata + c->extradata_size) { | |
a1fc4d4a | 128 | const uint8_t *r1; |
99f373f3 | 129 | uint8_t nal_type; |
29e35d67 LA |
130 | |
131 | while (!*(r++)); | |
99f373f3 | 132 | nal_type = *r & 0x1f; |
29e35d67 | 133 | r1 = ff_avc_find_startcode(r, c->extradata + c->extradata_size); |
99f373f3 MS |
134 | if (nal_type != 7 && nal_type != 8) { /* Only output SPS and PPS */ |
135 | r = r1; | |
136 | continue; | |
137 | } | |
29e35d67 LA |
138 | if (p != (psets + strlen(pset_string))) { |
139 | *p = ','; | |
140 | p++; | |
141 | } | |
142 | if (av_base64_encode(p, MAX_PSET_SIZE - (p - psets), r, r1 - r) == NULL) { | |
7be75dd7 | 143 | av_log(c, AV_LOG_ERROR, "Cannot Base64-encode %td %td!\n", MAX_PSET_SIZE - (p - psets), r1 - r); |
29e35d67 LA |
144 | av_free(psets); |
145 | ||
146 | return NULL; | |
147 | } | |
148 | p += strlen(p); | |
149 | r = r1; | |
150 | } | |
151 | ||
152 | return psets; | |
153 | } | |
154 | ||
81ab1fa1 | 155 | static char *extradata2config(AVCodecContext *c) |
4901263a LA |
156 | { |
157 | char *config; | |
158 | ||
81ab1fa1 | 159 | if (c->extradata_size > MAX_EXTRADATA_SIZE) { |
7be75dd7 | 160 | av_log(c, AV_LOG_ERROR, "Too much extradata!\n"); |
4901263a LA |
161 | |
162 | return NULL; | |
163 | } | |
81ab1fa1 | 164 | config = av_malloc(10 + c->extradata_size * 2); |
4901263a | 165 | if (config == NULL) { |
7be75dd7 | 166 | av_log(c, AV_LOG_ERROR, "Cannot allocate memory for the config info.\n"); |
4901263a LA |
167 | return NULL; |
168 | } | |
169 | memcpy(config, "; config=", 9); | |
f1c80e35 | 170 | ff_data_to_hex(config + 9, c->extradata, c->extradata_size); |
81ab1fa1 | 171 | config[9 + c->extradata_size * 2] = 0; |
4901263a LA |
172 | |
173 | return config; | |
174 | } | |
175 | ||
91cd7eb6 | 176 | static char *sdp_write_media_attributes(char *buff, int size, AVCodecContext *c, int payload_type) |
c5388c07 LA |
177 | { |
178 | char *config = NULL; | |
179 | ||
180 | switch (c->codec_id) { | |
b21cd0bc | 181 | case CODEC_ID_H264: |
29e35d67 LA |
182 | if (c->extradata_size) { |
183 | config = extradata2psets(c); | |
184 | } | |
b21cd0bc LA |
185 | av_strlcatf(buff, size, "a=rtpmap:%d H264/90000\r\n" |
186 | "a=fmtp:%d packetization-mode=1%s\r\n", | |
187 | payload_type, | |
188 | payload_type, config ? config : ""); | |
189 | break; | |
9edfaf3c MS |
190 | case CODEC_ID_H263: |
191 | case CODEC_ID_H263P: | |
192 | av_strlcatf(buff, size, "a=rtpmap:%d H263-2000/90000\r\n", payload_type); | |
193 | break; | |
c5388c07 | 194 | case CODEC_ID_MPEG4: |
21b37480 | 195 | if (c->extradata_size) { |
81ab1fa1 | 196 | config = extradata2config(c); |
c5388c07 LA |
197 | } |
198 | av_strlcatf(buff, size, "a=rtpmap:%d MP4V-ES/90000\r\n" | |
199 | "a=fmtp:%d profile-level-id=1%s\r\n", | |
200 | payload_type, | |
201 | payload_type, config ? config : ""); | |
202 | break; | |
4901263a | 203 | case CODEC_ID_AAC: |
21b37480 | 204 | if (c->extradata_size) { |
81ab1fa1 | 205 | config = extradata2config(c); |
4901263a LA |
206 | } else { |
207 | /* FIXME: maybe we can forge config information based on the | |
208 | * codec parameters... | |
209 | */ | |
7be75dd7 | 210 | av_log(c, AV_LOG_ERROR, "AAC with no global headers is currently not supported.\n"); |
4901263a LA |
211 | return NULL; |
212 | } | |
213 | if (config == NULL) { | |
214 | return NULL; | |
215 | } | |
216 | av_strlcatf(buff, size, "a=rtpmap:%d MPEG4-GENERIC/%d/%d\r\n" | |
217 | "a=fmtp:%d profile-level-id=1;" | |
218 | "mode=AAC-hbr;sizelength=13;indexlength=3;" | |
219 | "indexdeltalength=3%s\r\n", | |
220 | payload_type, c->sample_rate, c->channels, | |
221 | payload_type, config); | |
222 | break; | |
c9215bab | 223 | case CODEC_ID_PCM_S16BE: |
f877954f | 224 | if (payload_type >= RTP_PT_PRIVATE) |
c9215bab LA |
225 | av_strlcatf(buff, size, "a=rtpmap:%d L16/%d/%d\r\n", |
226 | payload_type, | |
227 | c->sample_rate, c->channels); | |
228 | break; | |
229 | case CODEC_ID_PCM_MULAW: | |
f877954f | 230 | if (payload_type >= RTP_PT_PRIVATE) |
c9215bab LA |
231 | av_strlcatf(buff, size, "a=rtpmap:%d PCMU/%d/%d\r\n", |
232 | payload_type, | |
233 | c->sample_rate, c->channels); | |
234 | break; | |
235 | case CODEC_ID_PCM_ALAW: | |
f877954f | 236 | if (payload_type >= RTP_PT_PRIVATE) |
c9215bab LA |
237 | av_strlcatf(buff, size, "a=rtpmap:%d PCMA/%d/%d\r\n", |
238 | payload_type, | |
239 | c->sample_rate, c->channels); | |
240 | break; | |
08e696c0 MS |
241 | case CODEC_ID_AMR_NB: |
242 | av_strlcatf(buff, size, "a=rtpmap:%d AMR/%d/%d\r\n" | |
243 | "a=fmtp:%d octet-align=1\r\n", | |
244 | payload_type, c->sample_rate, c->channels, | |
245 | payload_type); | |
246 | break; | |
247 | case CODEC_ID_AMR_WB: | |
248 | av_strlcatf(buff, size, "a=rtpmap:%d AMR-WB/%d/%d\r\n" | |
249 | "a=fmtp:%d octet-align=1\r\n", | |
250 | payload_type, c->sample_rate, c->channels, | |
251 | payload_type); | |
252 | break; | |
c5388c07 | 253 | default: |
7be75dd7 | 254 | /* Nothing special to do here... */ |
c5388c07 LA |
255 | break; |
256 | } | |
257 | ||
258 | av_free(config); | |
259 | ||
260 | return buff; | |
261 | } | |
262 | ||
263 | static void sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, int port, int ttl) | |
264 | { | |
265 | const char *type; | |
266 | int payload_type; | |
267 | ||
0550b58f | 268 | payload_type = ff_rtp_get_payload_type(c); |
c5388c07 | 269 | if (payload_type < 0) { |
6399c17d | 270 | payload_type = RTP_PT_PRIVATE + (c->codec_type == CODEC_TYPE_AUDIO); |
c5388c07 LA |
271 | } |
272 | ||
273 | switch (c->codec_type) { | |
274 | case CODEC_TYPE_VIDEO : type = "video" ; break; | |
275 | case CODEC_TYPE_AUDIO : type = "audio" ; break; | |
276 | case CODEC_TYPE_SUBTITLE: type = "text" ; break; | |
277 | default : type = "application"; break; | |
278 | } | |
279 | ||
280 | av_strlcatf(buff, size, "m=%s %d RTP/AVP %d\r\n", type, port, payload_type); | |
91cd7eb6 | 281 | sdp_write_address(buff, size, dest_addr, ttl); |
83cc23c5 LA |
282 | if (c->bit_rate) { |
283 | av_strlcatf(buff, size, "b=AS:%d\r\n", c->bit_rate / 1000); | |
284 | } | |
c5388c07 | 285 | |
91cd7eb6 | 286 | sdp_write_media_attributes(buff, size, c, payload_type); |
c5388c07 LA |
287 | } |
288 | ||
8767b80f | 289 | int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size) |
c5388c07 | 290 | { |
f3650b23 | 291 | AVMetadataTag *title = av_metadata_get(ac[0]->metadata, "title", NULL, 0); |
c5388c07 LA |
292 | struct sdp_session_level s; |
293 | int i, j, port, ttl; | |
294 | char dst[32]; | |
295 | ||
5f2cbb53 | 296 | memset(buff, 0, size); |
c5388c07 LA |
297 | memset(&s, 0, sizeof(struct sdp_session_level)); |
298 | s.user = "-"; | |
299 | s.src_addr = "127.0.0.1"; /* FIXME: Properly set this */ | |
f3650b23 | 300 | s.name = title ? title->value : "No Name"; |
c5388c07 LA |
301 | |
302 | port = 0; | |
303 | ttl = 0; | |
304 | if (n_files == 1) { | |
91cd7eb6 | 305 | port = sdp_get_address(dst, sizeof(dst), &ttl, ac[0]->filename); |
9ea7f03a | 306 | if (dst[0]) { |
c5388c07 LA |
307 | s.dst_addr = dst; |
308 | s.ttl = ttl; | |
309 | } | |
310 | } | |
8767b80f | 311 | sdp_write_header(buff, size, &s); |
c5388c07 LA |
312 | |
313 | dst[0] = 0; | |
314 | for (i = 0; i < n_files; i++) { | |
315 | if (n_files != 1) { | |
91cd7eb6 | 316 | port = sdp_get_address(dst, sizeof(dst), &ttl, ac[i]->filename); |
c5388c07 LA |
317 | } |
318 | for (j = 0; j < ac[i]->nb_streams; j++) { | |
8767b80f | 319 | sdp_write_media(buff, size, |
c5388c07 LA |
320 | ac[i]->streams[j]->codec, dst[0] ? dst : NULL, |
321 | (port > 0) ? port + j * 2 : 0, ttl); | |
322 | if (port <= 0) { | |
8767b80f | 323 | av_strlcatf(buff, size, |
c5388c07 LA |
324 | "a=control:streamid=%d\r\n", i + j); |
325 | } | |
326 | } | |
327 | } | |
328 | ||
8767b80f | 329 | return 0; |
c5388c07 | 330 | } |
7ba32703 | 331 | #else |
8767b80f | 332 | int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size) |
7ba32703 | 333 | { |
8767b80f | 334 | return AVERROR(ENOSYS); |
7ba32703 LA |
335 | } |
336 | #endif |