2 * copyright (c) 2007 Luca Abeni
4 * This file is part of FFmpeg.
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.
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.
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
27 #ifdef CONFIG_RTP_MUXER
28 #define MAX_EXTRADATA_SIZE ((INT_MAX - 10) / 2)
30 struct sdp_session_level
{
31 int sdp_version
; /**< protocol version (currently 0) */
32 int id
; /**< session id */
33 int version
; /**< session version */
34 int start_time
; /**< session start time (NTP time, in seconds),
35 or 0 in case of permanent session */
36 int end_time
; /**< session end time (NTP time, in seconds),
37 or 0 if the session is not bounded */
38 int ttl
; /**< TTL, in case of multicast stream */
39 const char *user
; /**< username of the session's creator */
40 const char *src_addr
; /**< IP address of the machine from which the session was created */
41 const char *dst_addr
; /**< destination IP address (can be multicast) */
42 const char *name
; /**< session name (can be an empty string) */
45 static void dest_write(char *buff
, int size
, const char *dest_addr
, int ttl
)
49 av_strlcatf(buff
, size
, "c=IN IP4 %s/%d\r\n", dest_addr
, ttl
);
51 av_strlcatf(buff
, size
, "c=IN IP4 %s\r\n", dest_addr
);
56 static void sdp_write_header(char *buff
, int size
, struct sdp_session_level
*s
)
58 av_strlcatf(buff
, size
, "v=%d\r\n"
59 "o=- %d %d IN IPV4 %s\r\n"
62 "a=tool:libavformat\r\n",
64 s
->id
, s
->version
, s
->src_addr
,
65 s
->start_time
, s
->end_time
,
66 s
->name
[0] ? s
->name
: "No Name");
67 dest_write(buff
, size
, s
->dst_addr
, s
->ttl
);
70 static int get_address(char *dest_addr
, int size
, int *ttl
, const char *url
)
75 url_split(NULL
, 0, NULL
, 0, dest_addr
, size
, &port
, NULL
, 0, url
);
81 int is_multicast
= find_info_tag(buff
, sizeof(buff
), "multicast", p
);
84 if (find_info_tag(buff
, sizeof(buff
), "ttl", p
)) {
85 *ttl
= strtol(buff
, NULL
, 10);
95 #define MAX_PSET_SIZE 1024
96 static char *extradata2psets(AVCodecContext
*c
)
100 const char *pset_string
= "; sprop-parameter-sets=";
102 if (c
->extradata_size
> MAX_EXTRADATA_SIZE
) {
103 av_log(c
, AV_LOG_ERROR
, "Too many extra data!\n");
108 psets
= av_mallocz(MAX_PSET_SIZE
);
110 av_log(c
, AV_LOG_ERROR
, "Cannot allocate memory for the parameter sets\n");
113 memcpy(psets
, pset_string
, strlen(pset_string
));
114 p
= psets
+ strlen(pset_string
);
115 r
= ff_avc_find_startcode(c
->extradata
, c
->extradata
+ c
->extradata_size
);
116 while (r
< c
->extradata
+ c
->extradata_size
) {
120 r1
= ff_avc_find_startcode(r
, c
->extradata
+ c
->extradata_size
);
121 if (p
!= (psets
+ strlen(pset_string
))) {
125 if (av_base64_encode(p
, MAX_PSET_SIZE
- (p
- psets
), r
, r1
- r
) == NULL
) {
126 av_log(c
, AV_LOG_ERROR
, "Cannot BASE64 encode %d %d!\n", MAX_PSET_SIZE
- (p
- psets
), r1
- r
);
138 static void digit_to_char(char *dst
, uint8_t src
)
143 *dst
= 'A' + src
- 10;
147 static char *data_to_hex(char *buff
, const uint8_t *src
, int s
)
151 for(i
= 0; i
< s
; i
++) {
152 digit_to_char(buff
+ 2 * i
, src
[i
] >> 4);
153 digit_to_char(buff
+ 2 * i
+ 1, src
[i
] & 0xF);
159 static char *extradata2config(AVCodecContext
*c
)
163 if (c
->extradata_size
> MAX_EXTRADATA_SIZE
) {
164 av_log(c
, AV_LOG_ERROR
, "Too many extra data!\n");
168 config
= av_malloc(10 + c
->extradata_size
* 2);
169 if (config
== NULL
) {
170 av_log(c
, AV_LOG_ERROR
, "Cannot allocate memory for the config info\n");
173 memcpy(config
, "; config=", 9);
174 data_to_hex(config
+ 9, c
->extradata
, c
->extradata_size
);
175 config
[9 + c
->extradata_size
* 2] = 0;
180 static char *sdp_media_attributes(char *buff
, int size
, AVCodecContext
*c
, int payload_type
)
184 switch (c
->codec_id
) {
186 if (c
->extradata_size
) {
187 config
= extradata2psets(c
);
189 av_strlcatf(buff
, size
, "a=rtpmap:%d H264/90000\r\n"
190 "a=fmtp:%d packetization-mode=1%s\r\n",
192 payload_type
, config
? config
: "");
195 if (c
->extradata_size
) {
196 config
= extradata2config(c
);
198 av_strlcatf(buff
, size
, "a=rtpmap:%d MP4V-ES/90000\r\n"
199 "a=fmtp:%d profile-level-id=1%s\r\n",
201 payload_type
, config
? config
: "");
204 if (c
->extradata_size
) {
205 config
= extradata2config(c
);
207 /* FIXME: maybe we can forge config information based on the
208 * codec parameters...
210 av_log(c
, AV_LOG_ERROR
, "AAC with no global headers is currently not supported\n");
213 if (config
== NULL
) {
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
);
223 case CODEC_ID_PCM_S16BE
:
224 if (payload_type
>= 96)
225 av_strlcatf(buff
, size
, "a=rtpmap:%d L16/%d/%d\r\n",
227 c
->sample_rate
, c
->channels
);
229 case CODEC_ID_PCM_MULAW
:
230 if (payload_type
>= 96)
231 av_strlcatf(buff
, size
, "a=rtpmap:%d PCMU/%d/%d\r\n",
233 c
->sample_rate
, c
->channels
);
235 case CODEC_ID_PCM_ALAW
:
236 if (payload_type
>= 96)
237 av_strlcatf(buff
, size
, "a=rtpmap:%d PCMA/%d/%d\r\n",
239 c
->sample_rate
, c
->channels
);
242 /* Nothing special to do, here... */
251 static void sdp_write_media(char *buff
, int size
, AVCodecContext
*c
, const char *dest_addr
, int port
, int ttl
)
256 payload_type
= rtp_get_payload_type(c
);
257 if (payload_type
< 0) {
258 payload_type
= 96; /* FIXME: how to assign a private pt? rtp.c is broken too */
261 switch (c
->codec_type
) {
262 case CODEC_TYPE_VIDEO
: type
= "video" ; break;
263 case CODEC_TYPE_AUDIO
: type
= "audio" ; break;
264 case CODEC_TYPE_SUBTITLE
: type
= "text" ; break;
265 default : type
= "application"; break;
268 av_strlcatf(buff
, size
, "m=%s %d RTP/AVP %d\r\n", type
, port
, payload_type
);
269 dest_write(buff
, size
, dest_addr
, ttl
);
271 av_strlcatf(buff
, size
, "b=AS:%d\r\n", c
->bit_rate
/ 1000);
274 sdp_media_attributes(buff
, size
, c
, payload_type
);
277 int avf_sdp_create(AVFormatContext
*ac
[], int n_files
, char *buff
, int size
)
279 struct sdp_session_level s
;
283 memset(buff
, 0, size
);
284 memset(&s
, 0, sizeof(struct sdp_session_level
));
286 s
.src_addr
= "127.0.0.1"; /* FIXME: Properly set this */
287 s
.name
= ac
[0]->title
;
292 port
= get_address(dst
, sizeof(dst
), &ttl
, ac
[0]->filename
);
298 sdp_write_header(buff
, size
, &s
);
301 for (i
= 0; i
< n_files
; i
++) {
303 port
= get_address(dst
, sizeof(dst
), &ttl
, ac
[i
]->filename
);
305 for (j
= 0; j
< ac
[i
]->nb_streams
; j
++) {
306 sdp_write_media(buff
, size
,
307 ac
[i
]->streams
[j
]->codec
, dst
[0] ? dst
: NULL
,
308 (port
> 0) ? port
+ j
* 2 : 0, ttl
);
310 av_strlcatf(buff
, size
,
311 "a=control:streamid=%d\r\n", i
+ j
);
319 int avf_sdp_create(AVFormatContext
*ac
[], int n_files
, char *buff
, int size
)
321 return AVERROR(ENOSYS
);