Mercurial > libavformat.hg
annotate sdp.c @ 6334:67c36f475c54 libavformat
In wav muxer, always flush in write_trailer, fix pipe output
author | bcoudurier |
---|---|
date | Wed, 28 Jul 2010 08:17:02 +0000 |
parents | 4fc5e0e4e1cd |
children | 93c7a56fa912 |
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" | |
2284 | 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" |
5525
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
28 #if CONFIG_NETWORK |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
29 #include "network.h" |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
30 #endif |
2284 | 31 |
4206 | 32 #if CONFIG_RTP_MUXER |
2284 | 33 #define MAX_EXTRADATA_SIZE ((INT_MAX - 10) / 2) |
34 | |
35 struct sdp_session_level { | |
36 int sdp_version; /**< protocol version (currently 0) */ | |
4421 | 37 int id; /**< session ID */ |
2284 | 38 int version; /**< session version */ |
39 int start_time; /**< session start time (NTP time, in seconds), | |
4421 | 40 or 0 in case of permanent session */ |
2284 | 41 int end_time; /**< session end time (NTP time, in seconds), |
42 or 0 if the session is not bounded */ | |
43 int ttl; /**< TTL, in case of multicast stream */ | |
44 const char *user; /**< username of the session's creator */ | |
45 const char *src_addr; /**< IP address of the machine from which the session was created */ | |
46 const char *dst_addr; /**< destination IP address (can be multicast) */ | |
47 const char *name; /**< session name (can be an empty string) */ | |
48 }; | |
49 | |
4049 | 50 static void sdp_write_address(char *buff, int size, const char *dest_addr, int ttl) |
2284 | 51 { |
52 if (dest_addr) { | |
53 if (ttl > 0) { | |
54 av_strlcatf(buff, size, "c=IN IP4 %s/%d\r\n", dest_addr, ttl); | |
55 } else { | |
56 av_strlcatf(buff, size, "c=IN IP4 %s\r\n", dest_addr); | |
57 } | |
58 } | |
59 } | |
60 | |
61 static void sdp_write_header(char *buff, int size, struct sdp_session_level *s) | |
62 { | |
63 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
|
64 "o=- %d %d IN IP4 %s\r\n" |
5291 | 65 "s=%s\r\n", |
2284 | 66 s->sdp_version, |
67 s->id, s->version, s->src_addr, | |
4360 | 68 s->name); |
4049 | 69 sdp_write_address(buff, size, s->dst_addr, s->ttl); |
5291 | 70 av_strlcatf(buff, size, "t=%d %d\r\n" |
71 "a=tool:libavformat " AV_STRINGIFY(LIBAVFORMAT_VERSION) "\r\n", | |
72 s->start_time, s->end_time); | |
2284 | 73 } |
74 | |
5525
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
75 #if CONFIG_NETWORK |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
76 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
|
77 { |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
78 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
|
79 |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
80 if (!dest_addr[0]) |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
81 return; |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
82 |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
83 /* 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
|
84 * 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
|
85 |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
86 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
|
87 /* 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
|
88 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
|
89 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
|
90 return; |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
91 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
|
92 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
|
93 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
|
94 NULL, 0, NI_NUMERICHOST); |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
95 break; |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
96 } |
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 freeaddrinfo(ai); |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
99 } |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
100 #else |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
101 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
|
102 { |
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 #endif |
f484a964bed1
Make sure the destination address is written as an IP address in the SDP
lucabe
parents:
5501
diff
changeset
|
105 |
4049 | 106 static int sdp_get_address(char *dest_addr, int size, int *ttl, const char *url) |
2284 | 107 { |
108 int port; | |
109 const char *p; | |
5500 | 110 char proto[32]; |
2284 | 111 |
6182 | 112 av_url_split(proto, sizeof(proto), NULL, 0, dest_addr, size, &port, NULL, 0, url); |
2284 | 113 |
114 *ttl = 0; | |
5500 | 115 |
116 if (strcmp(proto, "rtp")) { | |
117 /* The url isn't for the actual rtp sessions, | |
118 * don't parse out anything else than the destination. | |
119 */ | |
120 return 0; | |
121 } | |
122 | |
2284 | 123 p = strchr(url, '?'); |
124 if (p) { | |
125 char buff[64]; | |
126 int is_multicast = find_info_tag(buff, sizeof(buff), "multicast", p); | |
127 | |
128 if (is_multicast) { | |
129 if (find_info_tag(buff, sizeof(buff), "ttl", p)) { | |
130 *ttl = strtol(buff, NULL, 10); | |
131 } else { | |
132 *ttl = 5; | |
133 } | |
134 } | |
135 } | |
136 | |
137 return port; | |
138 } | |
139 | |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
140 #define MAX_PSET_SIZE 1024 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
141 static char *extradata2psets(AVCodecContext *c) |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
142 { |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
143 char *psets, *p; |
3051 | 144 const uint8_t *r; |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
145 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
|
146 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
147 if (c->extradata_size > MAX_EXTRADATA_SIZE) { |
4421 | 148 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
|
149 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
150 return NULL; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
151 } |
6119
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
152 if (c->extradata[0] == 1) { |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
153 uint8_t *dummy_p; |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
154 int dummy_int; |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
155 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
|
156 |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
157 if (!bsfc) { |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
158 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
|
159 |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
160 return NULL; |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
161 } |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
162 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
|
163 av_bitstream_filter_close(bsfc); |
16ca32d9c5f0
Use a bitstream filter for converting the extradata syntax when generating an SDP.
lucabe
parents:
6009
diff
changeset
|
164 } |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
165 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
166 psets = av_mallocz(MAX_PSET_SIZE); |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
167 if (psets == NULL) { |
4421 | 168 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
|
169 return NULL; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
170 } |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
171 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
|
172 p = psets + strlen(pset_string); |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
173 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
|
174 while (r < c->extradata + c->extradata_size) { |
3051 | 175 const uint8_t *r1; |
4812
f7bc722a3a36
Only insert the SPS and PPS NALs in sprop-parameter-sets
lucabe
parents:
4502
diff
changeset
|
176 uint8_t nal_type; |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
177 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
178 while (!*(r++)); |
4812
f7bc722a3a36
Only insert the SPS and PPS NALs in sprop-parameter-sets
lucabe
parents:
4502
diff
changeset
|
179 nal_type = *r & 0x1f; |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
180 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
|
181 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
|
182 r = r1; |
f7bc722a3a36
Only insert the SPS and PPS NALs in sprop-parameter-sets
lucabe
parents:
4502
diff
changeset
|
183 continue; |
f7bc722a3a36
Only insert the SPS and PPS NALs in sprop-parameter-sets
lucabe
parents:
4502
diff
changeset
|
184 } |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
185 if (p != (psets + strlen(pset_string))) { |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
186 *p = ','; |
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 } |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
189 if (av_base64_encode(p, MAX_PSET_SIZE - (p - psets), r, r1 - r) == NULL) { |
4421 | 190 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
|
191 av_free(psets); |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
192 |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
193 return NULL; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
194 } |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
195 p += strlen(p); |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
196 r = r1; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
197 } |
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 return psets; |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
200 } |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
201 |
2916 | 202 static char *extradata2config(AVCodecContext *c) |
2521 | 203 { |
204 char *config; | |
205 | |
2916 | 206 if (c->extradata_size > MAX_EXTRADATA_SIZE) { |
4421 | 207 av_log(c, AV_LOG_ERROR, "Too much extradata!\n"); |
2521 | 208 |
209 return NULL; | |
210 } | |
2916 | 211 config = av_malloc(10 + c->extradata_size * 2); |
2521 | 212 if (config == NULL) { |
4421 | 213 av_log(c, AV_LOG_ERROR, "Cannot allocate memory for the config info.\n"); |
2521 | 214 return NULL; |
215 } | |
216 memcpy(config, "; config=", 9); | |
5883 | 217 ff_data_to_hex(config + 9, c->extradata, c->extradata_size, 0); |
2916 | 218 config[9 + c->extradata_size * 2] = 0; |
2521 | 219 |
220 return config; | |
221 } | |
222 | |
4049 | 223 static char *sdp_write_media_attributes(char *buff, int size, AVCodecContext *c, int payload_type) |
2284 | 224 { |
225 char *config = NULL; | |
226 | |
227 switch (c->codec_id) { | |
2958
b489d30f8685
Add minimal support for H.264 video in the SDP generator
lucabe
parents:
2916
diff
changeset
|
228 case CODEC_ID_H264: |
2961
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
229 if (c->extradata_size) { |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
230 config = extradata2psets(c); |
b9a3b81c5eb8
Support out-of-band parameter sets in SDP for H.264 video
lucabe
parents:
2958
diff
changeset
|
231 } |
2958
b489d30f8685
Add minimal support for H.264 video in the SDP generator
lucabe
parents:
2916
diff
changeset
|
232 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
|
233 "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
|
234 payload_type, |
b489d30f8685
Add minimal support for H.264 video in the SDP generator
lucabe
parents:
2916
diff
changeset
|
235 payload_type, config ? config : ""); |
b489d30f8685
Add minimal support for H.264 video in the SDP generator
lucabe
parents:
2916
diff
changeset
|
236 break; |
4814 | 237 case CODEC_ID_H263: |
238 case CODEC_ID_H263P: | |
239 av_strlcatf(buff, size, "a=rtpmap:%d H263-2000/90000\r\n", payload_type); | |
240 break; | |
2284 | 241 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
|
242 if (c->extradata_size) { |
2916 | 243 config = extradata2config(c); |
2284 | 244 } |
245 av_strlcatf(buff, size, "a=rtpmap:%d MP4V-ES/90000\r\n" | |
246 "a=fmtp:%d profile-level-id=1%s\r\n", | |
247 payload_type, | |
248 payload_type, config ? config : ""); | |
249 break; | |
2521 | 250 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
|
251 if (c->extradata_size) { |
2916 | 252 config = extradata2config(c); |
2521 | 253 } else { |
254 /* FIXME: maybe we can forge config information based on the | |
255 * codec parameters... | |
256 */ | |
4421 | 257 av_log(c, AV_LOG_ERROR, "AAC with no global headers is currently not supported.\n"); |
2521 | 258 return NULL; |
259 } | |
260 if (config == NULL) { | |
261 return NULL; | |
262 } | |
263 av_strlcatf(buff, size, "a=rtpmap:%d MPEG4-GENERIC/%d/%d\r\n" | |
264 "a=fmtp:%d profile-level-id=1;" | |
265 "mode=AAC-hbr;sizelength=13;indexlength=3;" | |
266 "indexdeltalength=3%s\r\n", | |
267 payload_type, c->sample_rate, c->channels, | |
268 payload_type, config); | |
269 break; | |
2729 | 270 case CODEC_ID_PCM_S16BE: |
5474
ff40a9607f5b
Use RTP_PT_PRIVATE in sdp.c instead of hardcoding 96.
lucabe
parents:
5291
diff
changeset
|
271 if (payload_type >= RTP_PT_PRIVATE) |
2729 | 272 av_strlcatf(buff, size, "a=rtpmap:%d L16/%d/%d\r\n", |
273 payload_type, | |
274 c->sample_rate, c->channels); | |
275 break; | |
276 case CODEC_ID_PCM_MULAW: | |
5474
ff40a9607f5b
Use RTP_PT_PRIVATE in sdp.c instead of hardcoding 96.
lucabe
parents:
5291
diff
changeset
|
277 if (payload_type >= RTP_PT_PRIVATE) |
2729 | 278 av_strlcatf(buff, size, "a=rtpmap:%d PCMU/%d/%d\r\n", |
279 payload_type, | |
280 c->sample_rate, c->channels); | |
281 break; | |
282 case CODEC_ID_PCM_ALAW: | |
5474
ff40a9607f5b
Use RTP_PT_PRIVATE in sdp.c instead of hardcoding 96.
lucabe
parents:
5291
diff
changeset
|
283 if (payload_type >= RTP_PT_PRIVATE) |
2729 | 284 av_strlcatf(buff, size, "a=rtpmap:%d PCMA/%d/%d\r\n", |
285 payload_type, | |
286 c->sample_rate, c->channels); | |
287 break; | |
4836 | 288 case CODEC_ID_AMR_NB: |
289 av_strlcatf(buff, size, "a=rtpmap:%d AMR/%d/%d\r\n" | |
290 "a=fmtp:%d octet-align=1\r\n", | |
291 payload_type, c->sample_rate, c->channels, | |
292 payload_type); | |
293 break; | |
294 case CODEC_ID_AMR_WB: | |
295 av_strlcatf(buff, size, "a=rtpmap:%d AMR-WB/%d/%d\r\n" | |
296 "a=fmtp:%d octet-align=1\r\n", | |
297 payload_type, c->sample_rate, c->channels, | |
298 payload_type); | |
299 break; | |
2284 | 300 default: |
4421 | 301 /* Nothing special to do here... */ |
2284 | 302 break; |
303 } | |
304 | |
305 av_free(config); | |
306 | |
307 return buff; | |
308 } | |
309 | |
6009 | 310 void ff_sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, int port, int ttl) |
2284 | 311 { |
312 const char *type; | |
313 int payload_type; | |
314 | |
4502
daca5391106a
Rename rtp_get_payload_type() to ff_rtp_get_payload_type(), as it is not
lucabe
parents:
4421
diff
changeset
|
315 payload_type = ff_rtp_get_payload_type(c); |
2284 | 316 if (payload_type < 0) { |
5910
536e5527c1e0
Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents:
5883
diff
changeset
|
317 payload_type = RTP_PT_PRIVATE + (c->codec_type == AVMEDIA_TYPE_AUDIO); |
2284 | 318 } |
319 | |
320 switch (c->codec_type) { | |
5910
536e5527c1e0
Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents:
5883
diff
changeset
|
321 case AVMEDIA_TYPE_VIDEO : type = "video" ; break; |
536e5527c1e0
Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents:
5883
diff
changeset
|
322 case AVMEDIA_TYPE_AUDIO : type = "audio" ; break; |
536e5527c1e0
Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents:
5883
diff
changeset
|
323 case AVMEDIA_TYPE_SUBTITLE: type = "text" ; break; |
2284 | 324 default : type = "application"; break; |
325 } | |
326 | |
327 av_strlcatf(buff, size, "m=%s %d RTP/AVP %d\r\n", type, port, payload_type); | |
4049 | 328 sdp_write_address(buff, size, dest_addr, ttl); |
3113
f1aecf52bac5
Add some information about the stream bitrate, if available
lucabe
parents:
3051
diff
changeset
|
329 if (c->bit_rate) { |
f1aecf52bac5
Add some information about the stream bitrate, if available
lucabe
parents:
3051
diff
changeset
|
330 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
|
331 } |
2284 | 332 |
4049 | 333 sdp_write_media_attributes(buff, size, c, payload_type); |
2284 | 334 } |
335 | |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
336 int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size) |
2284 | 337 { |
4360 | 338 AVMetadataTag *title = av_metadata_get(ac[0]->metadata, "title", NULL, 0); |
2284 | 339 struct sdp_session_level s; |
340 int i, j, port, ttl; | |
341 char dst[32]; | |
342 | |
2422 | 343 memset(buff, 0, size); |
2284 | 344 memset(&s, 0, sizeof(struct sdp_session_level)); |
345 s.user = "-"; | |
346 s.src_addr = "127.0.0.1"; /* FIXME: Properly set this */ | |
4360 | 347 s.name = title ? title->value : "No Name"; |
2284 | 348 |
349 port = 0; | |
350 ttl = 0; | |
351 if (n_files == 1) { | |
4049 | 352 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
|
353 resolve_destination(dst, sizeof(dst)); |
5501
89259491d541
Always set the destination address even if no port was found.
lucabe
parents:
5500
diff
changeset
|
354 if (dst[0]) { |
2284 | 355 s.dst_addr = dst; |
356 s.ttl = ttl; | |
357 } | |
358 } | |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
359 sdp_write_header(buff, size, &s); |
2284 | 360 |
361 dst[0] = 0; | |
362 for (i = 0; i < n_files; i++) { | |
363 if (n_files != 1) { | |
4049 | 364 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
|
365 resolve_destination(dst, sizeof(dst)); |
2284 | 366 } |
367 for (j = 0; j < ac[i]->nb_streams; j++) { | |
6009 | 368 ff_sdp_write_media(buff, size, |
2284 | 369 ac[i]->streams[j]->codec, dst[0] ? dst : NULL, |
370 (port > 0) ? port + j * 2 : 0, ttl); | |
371 if (port <= 0) { | |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
372 av_strlcatf(buff, size, |
2284 | 373 "a=control:streamid=%d\r\n", i + j); |
374 } | |
375 } | |
376 } | |
377 | |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
378 return 0; |
2284 | 379 } |
2316
5a4914f78109
Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents:
2284
diff
changeset
|
380 #else |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
381 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
|
382 { |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
383 return AVERROR(ENOSYS); |
2316
5a4914f78109
Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents:
2284
diff
changeset
|
384 } |
6009 | 385 |
386 void ff_sdp_write_media(char *buff, int size, AVCodecContext *c, | |
387 const char *dest_addr, int port, int ttl) | |
388 { | |
389 } | |
2316
5a4914f78109
Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents:
2284
diff
changeset
|
390 #endif |