Mercurial > libavformat.hg
annotate sdp.c @ 2630:eb9371d9c590 libavformat
better log message
author | aurel |
---|---|
date | Thu, 18 Oct 2007 22:11:53 +0000 |
parents | 90609bab3de3 |
children | 005c0fd8d3eb |
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 | |
21 #include "avstring.h" | |
22 #include "avformat.h" | |
23 | |
2316
5a4914f78109
Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents:
2284
diff
changeset
|
24 #ifdef CONFIG_RTP_MUXER |
2284 | 25 #define MAX_EXTRADATA_SIZE ((INT_MAX - 10) / 2) |
26 | |
27 struct sdp_session_level { | |
28 int sdp_version; /**< protocol version (currently 0) */ | |
29 int id; /**< session id */ | |
30 int version; /**< session version */ | |
31 int start_time; /**< session start time (NTP time, in seconds), | |
32 or 0 in case of permanent session */ | |
33 int end_time; /**< session end time (NTP time, in seconds), | |
34 or 0 if the session is not bounded */ | |
35 int ttl; /**< TTL, in case of multicast stream */ | |
36 const char *user; /**< username of the session's creator */ | |
37 const char *src_addr; /**< IP address of the machine from which the session was created */ | |
38 const char *dst_addr; /**< destination IP address (can be multicast) */ | |
39 const char *name; /**< session name (can be an empty string) */ | |
40 }; | |
41 | |
42 static void dest_write(char *buff, int size, const char *dest_addr, int ttl) | |
43 { | |
44 if (dest_addr) { | |
45 if (ttl > 0) { | |
46 av_strlcatf(buff, size, "c=IN IP4 %s/%d\r\n", dest_addr, ttl); | |
47 } else { | |
48 av_strlcatf(buff, size, "c=IN IP4 %s\r\n", dest_addr); | |
49 } | |
50 } | |
51 } | |
52 | |
53 static void sdp_write_header(char *buff, int size, struct sdp_session_level *s) | |
54 { | |
55 av_strlcatf(buff, size, "v=%d\r\n" | |
56 "o=- %d %d IN IPV4 %s\r\n" | |
57 "t=%d %d\r\n" | |
58 "s=%s\r\n" | |
59 "a=tool:libavformat\r\n", | |
60 s->sdp_version, | |
61 s->id, s->version, s->src_addr, | |
62 s->start_time, s->end_time, | |
63 s->name[0] ? s->name : "No Name"); | |
64 dest_write(buff, size, s->dst_addr, s->ttl); | |
65 } | |
66 | |
67 static int get_address(char *dest_addr, int size, int *ttl, const char *url) | |
68 { | |
69 int port; | |
70 const char *p; | |
71 | |
72 url_split(NULL, 0, NULL, 0, dest_addr, size, &port, NULL, 0, url); | |
73 | |
74 *ttl = 0; | |
75 p = strchr(url, '?'); | |
76 if (p) { | |
77 char buff[64]; | |
78 int is_multicast = find_info_tag(buff, sizeof(buff), "multicast", p); | |
79 | |
80 if (is_multicast) { | |
81 if (find_info_tag(buff, sizeof(buff), "ttl", p)) { | |
82 *ttl = strtol(buff, NULL, 10); | |
83 } else { | |
84 *ttl = 5; | |
85 } | |
86 } | |
87 } | |
88 | |
89 return port; | |
90 } | |
91 | |
92 static void digit_to_char(char *dst, uint8_t src) | |
93 { | |
94 if (src < 10) { | |
95 *dst = '0' + src; | |
96 } else { | |
97 *dst = 'A' + src - 10; | |
98 } | |
99 } | |
100 | |
101 static char *data_to_hex(char *buff, const uint8_t *src, int s) | |
102 { | |
103 int i; | |
104 | |
105 for(i = 0; i < s; i++) { | |
106 digit_to_char(buff + 2 * i, src[i] >> 4); | |
107 digit_to_char(buff + 2 * i + 1, src[i] & 0xF); | |
108 } | |
109 | |
110 return buff; | |
111 } | |
112 | |
2521 | 113 static char *extradata2config(const uint8_t *extradata, int extradata_size) |
114 { | |
115 char *config; | |
116 | |
117 if (extradata_size > MAX_EXTRADATA_SIZE) { | |
118 av_log(NULL, AV_LOG_ERROR, "Too many extra data!\n"); | |
119 | |
120 return NULL; | |
121 } | |
122 config = av_malloc(10 + extradata_size * 2); | |
123 if (config == NULL) { | |
124 av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory for the config info\n"); | |
125 return NULL; | |
126 } | |
127 memcpy(config, "; config=", 9); | |
128 data_to_hex(config + 9, extradata, extradata_size); | |
129 config[9 + extradata_size * 2] = 0; | |
130 | |
131 return config; | |
132 } | |
133 | |
2284 | 134 static char *sdp_media_attributes(char *buff, int size, AVCodecContext *c, int payload_type) |
135 { | |
136 char *config = NULL; | |
137 | |
138 switch (c->codec_id) { | |
139 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
|
140 if (c->extradata_size) { |
2521 | 141 config = extradata2config(c->extradata, c->extradata_size); |
2284 | 142 } |
143 av_strlcatf(buff, size, "a=rtpmap:%d MP4V-ES/90000\r\n" | |
144 "a=fmtp:%d profile-level-id=1%s\r\n", | |
145 payload_type, | |
146 payload_type, config ? config : ""); | |
147 break; | |
2521 | 148 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
|
149 if (c->extradata_size) { |
2521 | 150 config = extradata2config(c->extradata, c->extradata_size); |
151 } else { | |
152 /* FIXME: maybe we can forge config information based on the | |
153 * codec parameters... | |
154 */ | |
155 av_log(NULL, AV_LOG_ERROR, "AAC with no global headers is currently not supported\n"); | |
156 return NULL; | |
157 } | |
158 if (config == NULL) { | |
159 return NULL; | |
160 } | |
161 av_strlcatf(buff, size, "a=rtpmap:%d MPEG4-GENERIC/%d/%d\r\n" | |
162 "a=fmtp:%d profile-level-id=1;" | |
163 "mode=AAC-hbr;sizelength=13;indexlength=3;" | |
164 "indexdeltalength=3%s\r\n", | |
165 payload_type, c->sample_rate, c->channels, | |
166 payload_type, config); | |
167 break; | |
2284 | 168 default: |
169 /* Nothing special to do, here... */ | |
170 break; | |
171 } | |
172 | |
173 av_free(config); | |
174 | |
175 return buff; | |
176 } | |
177 | |
178 static void sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, int port, int ttl) | |
179 { | |
180 const char *type; | |
181 int payload_type; | |
182 | |
183 payload_type = rtp_get_payload_type(c); | |
184 if (payload_type < 0) { | |
185 payload_type = 96; /* FIXME: how to assign a private pt? rtp.c is broken too */ | |
186 } | |
187 | |
188 switch (c->codec_type) { | |
189 case CODEC_TYPE_VIDEO : type = "video" ; break; | |
190 case CODEC_TYPE_AUDIO : type = "audio" ; break; | |
191 case CODEC_TYPE_SUBTITLE: type = "text" ; break; | |
192 default : type = "application"; break; | |
193 } | |
194 | |
195 av_strlcatf(buff, size, "m=%s %d RTP/AVP %d\r\n", type, port, payload_type); | |
196 dest_write(buff, size, dest_addr, ttl); | |
197 | |
198 sdp_media_attributes(buff, size, c, payload_type); | |
199 } | |
200 | |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
201 int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size) |
2284 | 202 { |
203 struct sdp_session_level s; | |
204 int i, j, port, ttl; | |
205 char dst[32]; | |
206 | |
2422 | 207 memset(buff, 0, size); |
2284 | 208 memset(&s, 0, sizeof(struct sdp_session_level)); |
209 s.user = "-"; | |
210 s.src_addr = "127.0.0.1"; /* FIXME: Properly set this */ | |
211 s.name = ac[0]->title; | |
212 | |
213 port = 0; | |
214 ttl = 0; | |
215 if (n_files == 1) { | |
216 port = get_address(dst, sizeof(dst), &ttl, ac[0]->filename); | |
217 if (port > 0) { | |
218 s.dst_addr = dst; | |
219 s.ttl = ttl; | |
220 } | |
221 } | |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
222 sdp_write_header(buff, size, &s); |
2284 | 223 |
224 dst[0] = 0; | |
225 for (i = 0; i < n_files; i++) { | |
226 if (n_files != 1) { | |
227 port = get_address(dst, sizeof(dst), &ttl, ac[i]->filename); | |
228 } | |
229 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
|
230 sdp_write_media(buff, size, |
2284 | 231 ac[i]->streams[j]->codec, dst[0] ? dst : NULL, |
232 (port > 0) ? port + j * 2 : 0, ttl); | |
233 if (port <= 0) { | |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
234 av_strlcatf(buff, size, |
2284 | 235 "a=control:streamid=%d\r\n", i + j); |
236 } | |
237 } | |
238 } | |
239 | |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
240 return 0; |
2284 | 241 } |
2316
5a4914f78109
Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents:
2284
diff
changeset
|
242 #else |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
243 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
|
244 { |
2317
2adc9f64ecfb
Change avf_sdp_create() to get a pre-allocated buffer as input, and to
lucabe
parents:
2316
diff
changeset
|
245 return AVERROR(ENOSYS); |
2316
5a4914f78109
Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents:
2284
diff
changeset
|
246 } |
5a4914f78109
Fix linking when RTP is disabled and libraries are dynamic
lucabe
parents:
2284
diff
changeset
|
247 #endif |