Mercurial > libavformat.hg
annotate sdp.c @ 4049:116a6910592c libavformat
Rename functions in sdp.c for consistency's sake.
| author | stefano |
|---|---|
| date | Sat, 29 Nov 2008 13:55:03 +0000 |
| parents | ca6df1ecb412 |
| children | c3102b189cb6 |
| 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 |
|
2316
5a4914f78109
Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents:
2284
diff
changeset
|
28 #ifdef 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) */ | |
| 33 int id; /**< session id */ | |
| 34 int version; /**< session version */ | |
| 35 int start_time; /**< session start time (NTP time, in seconds), | |
| 36 or 0 in case of permanent session */ | |
| 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, | |
| 67 s->name[0] ? s->name : "No 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) { |
|
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
104 av_log(c, AV_LOG_ERROR, "Too many extra data!\n"); |
|
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) { |
|
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
111 av_log(c, AV_LOG_ERROR, "Cannot allocate memory for the parameter sets\n"); |
|
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) { |
|
3276
24284961452b
Use correct length modifier for pointer diff argument in av_log() call.
diego
parents:
3113
diff
changeset
|
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) { |
| 144 av_log(c, AV_LOG_ERROR, "Too many extra data!\n"); | |
| 2521 | 145 |
| 146 return NULL; | |
| 147 } | |
| 2916 | 148 config = av_malloc(10 + c->extradata_size * 2); |
| 2521 | 149 if (config == NULL) { |
| 2916 | 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 */ | |
| 2916 | 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: |
| 222 /* Nothing special to do, here... */ | |
| 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 | |
| 236 payload_type = rtp_get_payload_type(c); | |
| 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 { |
| 259 struct sdp_session_level s; | |
| 260 int i, j, port, ttl; | |
| 261 char dst[32]; | |
| 262 | |
| 2422 | 263 memset(buff, 0, size); |
| 2284 | 264 memset(&s, 0, sizeof(struct sdp_session_level)); |
| 265 s.user = "-"; | |
| 266 s.src_addr = "127.0.0.1"; /* FIXME: Properly set this */ | |
| 267 s.name = ac[0]->title; | |
| 268 | |
| 269 port = 0; | |
| 270 ttl = 0; | |
| 271 if (n_files == 1) { | |
| 4049 | 272 port = sdp_get_address(dst, sizeof(dst), &ttl, ac[0]->filename); |
| 2284 | 273 if (port > 0) { |
| 274 s.dst_addr = dst; | |
| 275 s.ttl = ttl; | |
| 276 } | |
| 277 } | |
|
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
278 sdp_write_header(buff, size, &s); |
| 2284 | 279 |
| 280 dst[0] = 0; | |
| 281 for (i = 0; i < n_files; i++) { | |
| 282 if (n_files != 1) { | |
| 4049 | 283 port = sdp_get_address(dst, sizeof(dst), &ttl, ac[i]->filename); |
| 2284 | 284 } |
| 285 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
|
286 sdp_write_media(buff, size, |
| 2284 | 287 ac[i]->streams[j]->codec, dst[0] ? dst : NULL, |
| 288 (port > 0) ? port + j * 2 : 0, ttl); | |
| 289 if (port <= 0) { | |
|
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
290 av_strlcatf(buff, size, |
| 2284 | 291 "a=control:streamid=%d\r\n", i + j); |
| 292 } | |
| 293 } | |
| 294 } | |
| 295 | |
|
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
296 return 0; |
| 2284 | 297 } |
|
2316
5a4914f78109
Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents:
2284
diff
changeset
|
298 #else |
|
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
299 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
|
300 { |
|
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
301 return AVERROR(ENOSYS); |
|
2316
5a4914f78109
Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents:
2284
diff
changeset
|
302 } |
|
5a4914f78109
Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents:
2284
diff
changeset
|
303 #endif |
