Mercurial > libavformat.hg
annotate sdp.c @ 4639:70321467b4f9 libavformat
Reindent after r17777.
author | rbultje |
---|---|
date | Tue, 03 Mar 2009 16:53:04 +0000 |
parents | daca5391106a |
children | f7bc722a3a36 |
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 | |
3286 | 21 #include "libavutil/avstring.h" |
22 #include "libavutil/base64.h" | |
2284 | 23 #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
|
24 #include "internal.h" |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
25 #include "avc.h" |
2677
005c0fd8d3eb
Explicitly include rtp.h (needed for rtp_get_payload_type())
lucabe
parents:
2541
diff
changeset
|
26 #include "rtp.h" |
2284 | 27 |
4206 | 28 #if CONFIG_RTP_MUXER |
2284 | 29 #define MAX_EXTRADATA_SIZE ((INT_MAX - 10) / 2) |
30 | |
31 struct sdp_session_level { | |
32 int sdp_version; /**< protocol version (currently 0) */ | |
4421 | 33 int id; /**< session ID */ |
2284 | 34 int version; /**< session version */ |
35 int start_time; /**< session start time (NTP time, in seconds), | |
4421 | 36 or 0 in case of permanent session */ |
2284 | 37 int end_time; /**< session end time (NTP time, in seconds), |
38 or 0 if the session is not bounded */ | |
39 int ttl; /**< TTL, in case of multicast stream */ | |
40 const char *user; /**< username of the session's creator */ | |
41 const char *src_addr; /**< IP address of the machine from which the session was created */ | |
42 const char *dst_addr; /**< destination IP address (can be multicast) */ | |
43 const char *name; /**< session name (can be an empty string) */ | |
44 }; | |
45 | |
4049 | 46 static void sdp_write_address(char *buff, int size, const char *dest_addr, int ttl) |
2284 | 47 { |
48 if (dest_addr) { | |
49 if (ttl > 0) { | |
50 av_strlcatf(buff, size, "c=IN IP4 %s/%d\r\n", dest_addr, ttl); | |
51 } else { | |
52 av_strlcatf(buff, size, "c=IN IP4 %s\r\n", dest_addr); | |
53 } | |
54 } | |
55 } | |
56 | |
57 static void sdp_write_header(char *buff, int size, struct sdp_session_level *s) | |
58 { | |
59 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
|
60 "o=- %d %d IN IP4 %s\r\n" |
2284 | 61 "t=%d %d\r\n" |
62 "s=%s\r\n" | |
3548 | 63 "a=tool:libavformat " AV_STRINGIFY(LIBAVFORMAT_VERSION) "\r\n", |
2284 | 64 s->sdp_version, |
65 s->id, s->version, s->src_addr, | |
66 s->start_time, s->end_time, | |
4360 | 67 s->name); |
4049 | 68 sdp_write_address(buff, size, s->dst_addr, s->ttl); |
2284 | 69 } |
70 | |
4049 | 71 static int sdp_get_address(char *dest_addr, int size, int *ttl, const char *url) |
2284 | 72 { |
73 int port; | |
74 const char *p; | |
75 | |
76 url_split(NULL, 0, NULL, 0, dest_addr, size, &port, NULL, 0, url); | |
77 | |
78 *ttl = 0; | |
79 p = strchr(url, '?'); | |
80 if (p) { | |
81 char buff[64]; | |
82 int is_multicast = find_info_tag(buff, sizeof(buff), "multicast", p); | |
83 | |
84 if (is_multicast) { | |
85 if (find_info_tag(buff, sizeof(buff), "ttl", p)) { | |
86 *ttl = strtol(buff, NULL, 10); | |
87 } else { | |
88 *ttl = 5; | |
89 } | |
90 } | |
91 } | |
92 | |
93 return port; | |
94 } | |
95 | |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
96 #define MAX_PSET_SIZE 1024 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
97 static char *extradata2psets(AVCodecContext *c) |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
98 { |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
99 char *psets, *p; |
3051 | 100 const uint8_t *r; |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
101 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
|
102 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
103 if (c->extradata_size > MAX_EXTRADATA_SIZE) { |
4421 | 104 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
|
105 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
106 return NULL; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
107 } |
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 psets = av_mallocz(MAX_PSET_SIZE); |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
110 if (psets == NULL) { |
4421 | 111 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
|
112 return NULL; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
113 } |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
114 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
|
115 p = psets + strlen(pset_string); |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
116 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
|
117 while (r < c->extradata + c->extradata_size) { |
3051 | 118 const uint8_t *r1; |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
119 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
120 while (!*(r++)); |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
121 r1 = ff_avc_find_startcode(r, c->extradata + c->extradata_size); |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
122 if (p != (psets + strlen(pset_string))) { |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
123 *p = ','; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
124 p++; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
125 } |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
126 if (av_base64_encode(p, MAX_PSET_SIZE - (p - psets), r, r1 - r) == NULL) { |
4421 | 127 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
|
128 av_free(psets); |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
129 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
130 return NULL; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
131 } |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
132 p += strlen(p); |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
133 r = r1; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
134 } |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
135 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
136 return psets; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
137 } |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
138 |
2916 | 139 static char *extradata2config(AVCodecContext *c) |
2521 | 140 { |
141 char *config; | |
142 | |
2916 | 143 if (c->extradata_size > MAX_EXTRADATA_SIZE) { |
4421 | 144 av_log(c, AV_LOG_ERROR, "Too much extradata!\n"); |
2521 | 145 |
146 return NULL; | |
147 } | |
2916 | 148 config = av_malloc(10 + c->extradata_size * 2); |
2521 | 149 if (config == NULL) { |
4421 | 150 av_log(c, AV_LOG_ERROR, "Cannot allocate memory for the config info.\n"); |
2521 | 151 return NULL; |
152 } | |
153 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
|
154 ff_data_to_hex(config + 9, c->extradata, c->extradata_size); |
2916 | 155 config[9 + c->extradata_size * 2] = 0; |
2521 | 156 |
157 return config; | |
158 } | |
159 | |
4049 | 160 static char *sdp_write_media_attributes(char *buff, int size, AVCodecContext *c, int payload_type) |
2284 | 161 { |
162 char *config = NULL; | |
163 | |
164 switch (c->codec_id) { | |
2958
b489d30f8685
Add minimal support for H.264 video in the SDP generator
lucabe
parents:
2916
diff
changeset
|
165 case CODEC_ID_H264: |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
166 if (c->extradata_size) { |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
167 config = extradata2psets(c); |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
168 } |
2958
b489d30f8685
Add minimal support for H.264 video in the SDP generator
lucabe
parents:
2916
diff
changeset
|
169 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
|
170 "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
|
171 payload_type, |
b489d30f8685
Add minimal support for H.264 video in the SDP generator
lucabe
parents:
2916
diff
changeset
|
172 payload_type, config ? config : ""); |
b489d30f8685
Add minimal support for H.264 video in the SDP generator
lucabe
parents:
2916
diff
changeset
|
173 break; |
2284 | 174 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
|
175 if (c->extradata_size) { |
2916 | 176 config = extradata2config(c); |
2284 | 177 } |
178 av_strlcatf(buff, size, "a=rtpmap:%d MP4V-ES/90000\r\n" | |
179 "a=fmtp:%d profile-level-id=1%s\r\n", | |
180 payload_type, | |
181 payload_type, config ? config : ""); | |
182 break; | |
2521 | 183 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
|
184 if (c->extradata_size) { |
2916 | 185 config = extradata2config(c); |
2521 | 186 } else { |
187 /* FIXME: maybe we can forge config information based on the | |
188 * codec parameters... | |
189 */ | |
4421 | 190 av_log(c, AV_LOG_ERROR, "AAC with no global headers is currently not supported.\n"); |
2521 | 191 return NULL; |
192 } | |
193 if (config == NULL) { | |
194 return NULL; | |
195 } | |
196 av_strlcatf(buff, size, "a=rtpmap:%d MPEG4-GENERIC/%d/%d\r\n" | |
197 "a=fmtp:%d profile-level-id=1;" | |
198 "mode=AAC-hbr;sizelength=13;indexlength=3;" | |
199 "indexdeltalength=3%s\r\n", | |
200 payload_type, c->sample_rate, c->channels, | |
201 payload_type, config); | |
202 break; | |
2729 | 203 case CODEC_ID_PCM_S16BE: |
204 if (payload_type >= 96) | |
205 av_strlcatf(buff, size, "a=rtpmap:%d L16/%d/%d\r\n", | |
206 payload_type, | |
207 c->sample_rate, c->channels); | |
208 break; | |
209 case CODEC_ID_PCM_MULAW: | |
210 if (payload_type >= 96) | |
211 av_strlcatf(buff, size, "a=rtpmap:%d PCMU/%d/%d\r\n", | |
212 payload_type, | |
213 c->sample_rate, c->channels); | |
214 break; | |
215 case CODEC_ID_PCM_ALAW: | |
216 if (payload_type >= 96) | |
217 av_strlcatf(buff, size, "a=rtpmap:%d PCMA/%d/%d\r\n", | |
218 payload_type, | |
219 c->sample_rate, c->channels); | |
220 break; | |
2284 | 221 default: |
4421 | 222 /* Nothing special to do here... */ |
2284 | 223 break; |
224 } | |
225 | |
226 av_free(config); | |
227 | |
228 return buff; | |
229 } | |
230 | |
231 static void sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, int port, int ttl) | |
232 { | |
233 const char *type; | |
234 int payload_type; | |
235 | |
4502
daca5391106a
Rename rtp_get_payload_type() to ff_rtp_get_payload_type(), as it is not
lucabe
parents:
4421
diff
changeset
|
236 payload_type = ff_rtp_get_payload_type(c); |
2284 | 237 if (payload_type < 0) { |
238 payload_type = 96; /* FIXME: how to assign a private pt? rtp.c is broken too */ | |
239 } | |
240 | |
241 switch (c->codec_type) { | |
242 case CODEC_TYPE_VIDEO : type = "video" ; break; | |
243 case CODEC_TYPE_AUDIO : type = "audio" ; break; | |
244 case CODEC_TYPE_SUBTITLE: type = "text" ; break; | |
245 default : type = "application"; break; | |
246 } | |
247 | |
248 av_strlcatf(buff, size, "m=%s %d RTP/AVP %d\r\n", type, port, payload_type); | |
4049 | 249 sdp_write_address(buff, size, dest_addr, ttl); |
3113
f1aecf52bac5
Add some information about the stream bitrate, if available
lucabe
parents:
3051
diff
changeset
|
250 if (c->bit_rate) { |
f1aecf52bac5
Add some information about the stream bitrate, if available
lucabe
parents:
3051
diff
changeset
|
251 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
|
252 } |
2284 | 253 |
4049 | 254 sdp_write_media_attributes(buff, size, c, payload_type); |
2284 | 255 } |
256 | |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
257 int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size) |
2284 | 258 { |
4360 | 259 AVMetadataTag *title = av_metadata_get(ac[0]->metadata, "title", NULL, 0); |
2284 | 260 struct sdp_session_level s; |
261 int i, j, port, ttl; | |
262 char dst[32]; | |
263 | |
2422 | 264 memset(buff, 0, size); |
2284 | 265 memset(&s, 0, sizeof(struct sdp_session_level)); |
266 s.user = "-"; | |
267 s.src_addr = "127.0.0.1"; /* FIXME: Properly set this */ | |
4360 | 268 s.name = title ? title->value : "No Name"; |
2284 | 269 |
270 port = 0; | |
271 ttl = 0; | |
272 if (n_files == 1) { | |
4049 | 273 port = sdp_get_address(dst, sizeof(dst), &ttl, ac[0]->filename); |
2284 | 274 if (port > 0) { |
275 s.dst_addr = dst; | |
276 s.ttl = ttl; | |
277 } | |
278 } | |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
279 sdp_write_header(buff, size, &s); |
2284 | 280 |
281 dst[0] = 0; | |
282 for (i = 0; i < n_files; i++) { | |
283 if (n_files != 1) { | |
4049 | 284 port = sdp_get_address(dst, sizeof(dst), &ttl, ac[i]->filename); |
2284 | 285 } |
286 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
|
287 sdp_write_media(buff, size, |
2284 | 288 ac[i]->streams[j]->codec, dst[0] ? dst : NULL, |
289 (port > 0) ? port + j * 2 : 0, ttl); | |
290 if (port <= 0) { | |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
291 av_strlcatf(buff, size, |
2284 | 292 "a=control:streamid=%d\r\n", i + j); |
293 } | |
294 } | |
295 } | |
296 | |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
297 return 0; |
2284 | 298 } |
2316
5a4914f78109
Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents:
2284
diff
changeset
|
299 #else |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
300 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
|
301 { |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
302 return AVERROR(ENOSYS); |
2316
5a4914f78109
Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents:
2284
diff
changeset
|
303 } |
5a4914f78109
Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents:
2284
diff
changeset
|
304 #endif |