]> git.sesse.net Git - vlc/blob - modules/stream_out/rtp.c
RTP: need one more bit for TTL -1 (default) value
[vlc] / modules / stream_out / rtp.c
1 /*****************************************************************************
2  * rtp.c: rtp stream output module
3  *****************************************************************************
4  * Copyright (C) 2003-2004 the VideoLAN team
5  * Copyright © 2007-2008 Rémi Denis-Courmont
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_sout.h>
35 #include <vlc_block.h>
36
37 #include <vlc_httpd.h>
38 #include <vlc_url.h>
39 #include <vlc_network.h>
40 #include <vlc_charset.h>
41 #include <vlc_strings.h>
42 #include <srtp.h>
43
44 #include "rtp.h"
45
46 #ifdef HAVE_UNISTD_H
47 #   include <sys/types.h>
48 #   include <unistd.h>
49 #   include <fcntl.h>
50 #   include <sys/stat.h>
51 #endif
52 #ifdef HAVE_LINUX_DCCP_H
53 #   include <linux/dccp.h>
54 #endif
55 #ifndef IPPROTO_DCCP
56 # define IPPROTO_DCCP 33
57 #endif
58 #ifndef IPPROTO_UDPLITE
59 # define IPPROTO_UDPLITE 136
60 #endif
61
62 #include <errno.h>
63
64 #include <assert.h>
65
66 /*****************************************************************************
67  * Module descriptor
68  *****************************************************************************/
69
70 #define DEST_TEXT N_("Destination")
71 #define DEST_LONGTEXT N_( \
72     "This is the output URL that will be used." )
73 #define SDP_TEXT N_("SDP")
74 #define SDP_LONGTEXT N_( \
75     "This allows you to specify how the SDP (Session Descriptor) for this RTP "\
76     "session will be made available. You must use an url: http://location to " \
77     "access the SDP via HTTP, rtsp://location for RTSP access, and sap:// " \
78     "for the SDP to be announced via SAP." )
79 #define SAP_TEXT N_("SAP announcing")
80 #define SAP_LONGTEXT N_("Announce this session with SAP.")
81 #define MUX_TEXT N_("Muxer")
82 #define MUX_LONGTEXT N_( \
83     "This allows you to specify the muxer used for the streaming output. " \
84     "Default is to use no muxer (standard RTP stream)." )
85
86 #define NAME_TEXT N_("Session name")
87 #define NAME_LONGTEXT N_( \
88     "This is the name of the session that will be announced in the SDP " \
89     "(Session Descriptor)." )
90 #define DESC_TEXT N_("Session description")
91 #define DESC_LONGTEXT N_( \
92     "This allows you to give a short description with details about the stream, " \
93     "that will be announced in the SDP (Session Descriptor)." )
94 #define URL_TEXT N_("Session URL")
95 #define URL_LONGTEXT N_( \
96     "This allows you to give an URL with more details about the stream " \
97     "(often the website of the streaming organization), that will " \
98     "be announced in the SDP (Session Descriptor)." )
99 #define EMAIL_TEXT N_("Session email")
100 #define EMAIL_LONGTEXT N_( \
101     "This allows you to give a contact mail address for the stream, that will " \
102     "be announced in the SDP (Session Descriptor)." )
103 #define PHONE_TEXT N_("Session phone number")
104 #define PHONE_LONGTEXT N_( \
105     "This allows you to give a contact telephone number for the stream, that will " \
106     "be announced in the SDP (Session Descriptor)." )
107
108 #define PORT_TEXT N_("Port")
109 #define PORT_LONGTEXT N_( \
110     "This allows you to specify the base port for the RTP streaming." )
111 #define PORT_AUDIO_TEXT N_("Audio port")
112 #define PORT_AUDIO_LONGTEXT N_( \
113     "This allows you to specify the default audio port for the RTP streaming." )
114 #define PORT_VIDEO_TEXT N_("Video port")
115 #define PORT_VIDEO_LONGTEXT N_( \
116     "This allows you to specify the default video port for the RTP streaming." )
117
118 #define TTL_TEXT N_("Hop limit (TTL)")
119 #define TTL_LONGTEXT N_( \
120     "This is the hop limit (also known as \"Time-To-Live\" or TTL) of " \
121     "the multicast packets sent by the stream output (-1 = use operating " \
122     "system built-in default).")
123
124 #define RTCP_MUX_TEXT N_("RTP/RTCP multiplexing")
125 #define RTCP_MUX_LONGTEXT N_( \
126     "This sends and receives RTCP packet multiplexed over the same port " \
127     "as RTP packets." )
128
129 #define PROTO_TEXT N_("Transport protocol")
130 #define PROTO_LONGTEXT N_( \
131     "This selects which transport protocol to use for RTP." )
132
133 #define SRTP_KEY_TEXT N_("SRTP key (hexadecimal)")
134 #define SRTP_KEY_LONGTEXT N_( \
135     "RTP packets will be integrity-protected and ciphered "\
136     "with this Secure RTP master shared secret key.")
137
138 #define SRTP_SALT_TEXT N_("SRTP salt (hexadecimal)")
139 #define SRTP_SALT_LONGTEXT N_( \
140     "Secure RTP requires a (non-secret) master salt value.")
141
142 static const char *const ppsz_protos[] = {
143     "dccp", "sctp", "tcp", "udp", "udplite",
144 };
145
146 static const char *const ppsz_protocols[] = {
147     "DCCP", "SCTP", "TCP", "UDP", "UDP-Lite",
148 };
149
150 #define RFC3016_TEXT N_("MP4A LATM")
151 #define RFC3016_LONGTEXT N_( \
152     "This allows you to stream MPEG4 LATM audio streams (see RFC3016)." )
153
154 static int  Open ( vlc_object_t * );
155 static void Close( vlc_object_t * );
156
157 #define SOUT_CFG_PREFIX "sout-rtp-"
158 #define MAX_EMPTY_BLOCKS 200
159
160 vlc_module_begin();
161     set_shortname( N_("RTP"));
162     set_description( N_("RTP stream output") );
163     set_capability( "sout stream", 0 );
164     add_shortcut( "rtp" );
165     set_category( CAT_SOUT );
166     set_subcategory( SUBCAT_SOUT_STREAM );
167
168     add_string( SOUT_CFG_PREFIX "dst", "", NULL, DEST_TEXT,
169                 DEST_LONGTEXT, true );
170         change_unsafe();
171     add_string( SOUT_CFG_PREFIX "sdp", "", NULL, SDP_TEXT,
172                 SDP_LONGTEXT, true );
173     add_string( SOUT_CFG_PREFIX "mux", "", NULL, MUX_TEXT,
174                 MUX_LONGTEXT, true );
175     add_bool( SOUT_CFG_PREFIX "sap", false, NULL, SAP_TEXT, SAP_LONGTEXT,
176               true );
177
178     add_string( SOUT_CFG_PREFIX "name", "", NULL, NAME_TEXT,
179                 NAME_LONGTEXT, true );
180     add_string( SOUT_CFG_PREFIX "description", "", NULL, DESC_TEXT,
181                 DESC_LONGTEXT, true );
182     add_string( SOUT_CFG_PREFIX "url", "", NULL, URL_TEXT,
183                 URL_LONGTEXT, true );
184     add_string( SOUT_CFG_PREFIX "email", "", NULL, EMAIL_TEXT,
185                 EMAIL_LONGTEXT, true );
186     add_string( SOUT_CFG_PREFIX "phone", "", NULL, PHONE_TEXT,
187                 PHONE_LONGTEXT, true );
188
189     add_string( SOUT_CFG_PREFIX "proto", "udp", NULL, PROTO_TEXT,
190                 PROTO_LONGTEXT, false );
191         change_string_list( ppsz_protos, ppsz_protocols, NULL );
192     add_integer( SOUT_CFG_PREFIX "port", 50004, NULL, PORT_TEXT,
193                  PORT_LONGTEXT, true );
194     add_integer( SOUT_CFG_PREFIX "port-audio", 50000, NULL, PORT_AUDIO_TEXT,
195                  PORT_AUDIO_LONGTEXT, true );
196     add_integer( SOUT_CFG_PREFIX "port-video", 50002, NULL, PORT_VIDEO_TEXT,
197                  PORT_VIDEO_LONGTEXT, true );
198
199     add_integer( SOUT_CFG_PREFIX "ttl", -1, NULL, TTL_TEXT,
200                  TTL_LONGTEXT, true );
201     add_bool( SOUT_CFG_PREFIX "rtcp-mux", false, NULL,
202               RTCP_MUX_TEXT, RTCP_MUX_LONGTEXT, false );
203
204     add_string( SOUT_CFG_PREFIX "key", "", NULL,
205                 SRTP_KEY_TEXT, SRTP_KEY_LONGTEXT, false );
206     add_string( SOUT_CFG_PREFIX "salt", "", NULL,
207                 SRTP_SALT_TEXT, SRTP_SALT_LONGTEXT, false );
208
209     add_bool( SOUT_CFG_PREFIX "mp4a-latm", 0, NULL, RFC3016_TEXT,
210                  RFC3016_LONGTEXT, false );
211
212     set_callbacks( Open, Close );
213 vlc_module_end();
214
215 /*****************************************************************************
216  * Exported prototypes
217  *****************************************************************************/
218 static const char *const ppsz_sout_options[] = {
219     "dst", "name", "port", "port-audio", "port-video", "*sdp", "ttl", "mux",
220     "sap", "description", "url", "email", "phone",
221     "proto", "rtcp-mux", "key", "salt",
222     "mp4a-latm", NULL
223 };
224
225 static sout_stream_id_t *Add ( sout_stream_t *, es_format_t * );
226 static int               Del ( sout_stream_t *, sout_stream_id_t * );
227 static int               Send( sout_stream_t *, sout_stream_id_t *,
228                                block_t* );
229 static sout_stream_id_t *MuxAdd ( sout_stream_t *, es_format_t * );
230 static int               MuxDel ( sout_stream_t *, sout_stream_id_t * );
231 static int               MuxSend( sout_stream_t *, sout_stream_id_t *,
232                                   block_t* );
233
234 static sout_access_out_t *GrabberCreate( sout_stream_t *p_sout );
235 static void* ThreadSend( vlc_object_t *p_this );
236
237 static void SDPHandleUrl( sout_stream_t *, const char * );
238
239 static int SapSetup( sout_stream_t *p_stream );
240 static int FileSetup( sout_stream_t *p_stream );
241 static int HttpSetup( sout_stream_t *p_stream, const vlc_url_t * );
242
243 struct sout_stream_sys_t
244 {
245     /* SDP */
246     char    *psz_sdp;
247     vlc_mutex_t  lock_sdp;
248
249     /* SDP to disk */
250     bool b_export_sdp_file;
251     char *psz_sdp_file;
252
253     /* SDP via SAP */
254     bool b_export_sap;
255     session_descriptor_t *p_session;
256
257     /* SDP via HTTP */
258     httpd_host_t *p_httpd_host;
259     httpd_file_t *p_httpd_file;
260
261     /* RTSP */
262     rtsp_stream_t *rtsp;
263
264     /* */
265     char     *psz_destination;
266     uint16_t  i_port;
267     uint16_t  i_port_audio;
268     uint16_t  i_port_video;
269     uint8_t   proto;
270     bool      rtcp_mux;
271     int       i_ttl:9;
272     /* when need to use a private one or when using muxer */
273     unsigned  i_payload_type:7;
274     bool      b_latm;
275
276     /* in case we do TS/PS over rtp */
277     sout_mux_t        *p_mux;
278     sout_access_out_t *p_grab;
279     block_t           *packet;
280
281     /* */
282     vlc_mutex_t      lock_es;
283     int              i_es;
284     sout_stream_id_t **es;
285 };
286
287 typedef int (*pf_rtp_packetizer_t)( sout_stream_id_t *, block_t * );
288
289 typedef struct rtp_sink_t
290 {
291     int rtp_fd;
292     rtcp_sender_t *rtcp;
293 } rtp_sink_t;
294
295 struct sout_stream_id_t
296 {
297     VLC_COMMON_MEMBERS
298
299     sout_stream_t *p_stream;
300     /* rtp field */
301     uint16_t    i_sequence;
302     uint8_t     i_payload_type;
303     uint8_t     ssrc[4];
304
305     /* for sdp */
306     const char  *psz_enc;
307     char        *psz_fmtp;
308     int          i_clock_rate;
309     int          i_port;
310     int          i_cat;
311     int          i_channels;
312     int          i_bitrate;
313
314     /* Packetizer specific fields */
315     int                 i_mtu;
316     srtp_session_t     *srtp;
317     pf_rtp_packetizer_t pf_packetize;
318
319     /* Packets sinks */
320     vlc_mutex_t       lock_sink;
321     int               sinkc;
322     rtp_sink_t       *sinkv;
323     rtsp_stream_id_t *rtsp_id;
324     int              *listen_fd;
325
326     block_fifo_t     *p_fifo;
327     int64_t           i_caching;
328 };
329
330 /*****************************************************************************
331  * Open:
332  *****************************************************************************/
333 static int Open( vlc_object_t *p_this )
334 {
335     sout_stream_t       *p_stream = (sout_stream_t*)p_this;
336     sout_instance_t     *p_sout = p_stream->p_sout;
337     sout_stream_sys_t   *p_sys = NULL;
338     config_chain_t      *p_cfg = NULL;
339     char                *psz;
340     bool          b_rtsp = false;
341
342     config_ChainParse( p_stream, SOUT_CFG_PREFIX,
343                        ppsz_sout_options, p_stream->p_cfg );
344
345     p_sys = malloc( sizeof( sout_stream_sys_t ) );
346     if( p_sys == NULL )
347         return VLC_ENOMEM;
348
349     p_sys->psz_destination = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "dst" );
350
351     p_sys->i_port       = var_GetInteger( p_stream, SOUT_CFG_PREFIX "port" );
352     p_sys->i_port_audio = var_GetInteger( p_stream, SOUT_CFG_PREFIX "port-audio" );
353     p_sys->i_port_video = var_GetInteger( p_stream, SOUT_CFG_PREFIX "port-video" );
354     p_sys->rtcp_mux   = var_GetBool( p_stream, SOUT_CFG_PREFIX "rtcp-mux" );
355
356     p_sys->psz_sdp_file = NULL;
357
358     if( p_sys->i_port_audio == p_sys->i_port_video )
359     {
360         msg_Err( p_stream, "audio and video port cannot be the same" );
361         p_sys->i_port_audio = 0;
362         p_sys->i_port_video = 0;
363     }
364
365     for( p_cfg = p_stream->p_cfg; p_cfg != NULL; p_cfg = p_cfg->p_next )
366     {
367         if( !strcmp( p_cfg->psz_name, "sdp" )
368          && ( p_cfg->psz_value != NULL )
369          && !strncasecmp( p_cfg->psz_value, "rtsp:", 5 ) )
370         {
371             b_rtsp = true;
372             break;
373         }
374     }
375     if( !b_rtsp )
376     {
377         psz = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "sdp" );
378         if( psz != NULL )
379         {
380             if( !strncasecmp( psz, "rtsp:", 5 ) )
381                 b_rtsp = true;
382             free( psz );
383         }
384     }
385
386     /* Transport protocol */
387     p_sys->proto = IPPROTO_UDP;
388     psz = var_GetNonEmptyString (p_stream, SOUT_CFG_PREFIX"proto");
389
390     if ((psz == NULL) || !strcasecmp (psz, "udp"))
391         (void)0; /* default */
392     else
393     if (!strcasecmp (psz, "dccp"))
394     {
395         p_sys->proto = IPPROTO_DCCP;
396         p_sys->rtcp_mux = true; /* Force RTP/RTCP mux */
397     }
398 #if 0
399     else
400     if (!strcasecmp (psz, "sctp"))
401     {
402         p_sys->proto = IPPROTO_TCP;
403         p_sys->rtcp_mux = true; /* Force RTP/RTCP mux */
404     }
405 #endif
406 #if 0
407     else
408     if (!strcasecmp (psz, "tcp"))
409     {
410         p_sys->proto = IPPROTO_TCP;
411         p_sys->rtcp_mux = true; /* Force RTP/RTCP mux */
412     }
413 #endif
414     else
415     if (!strcasecmp (psz, "udplite") || !strcasecmp (psz, "udp-lite"))
416         p_sys->proto = IPPROTO_UDPLITE;
417     else
418         msg_Warn (p_this, "unknown or unsupported transport protocol \"%s\"",
419                   psz);
420     free (psz);
421     var_Create (p_this, "dccp-service", VLC_VAR_STRING);
422
423     if( ( p_sys->psz_destination == NULL ) && !b_rtsp )
424     {
425         msg_Err( p_stream, "missing destination and not in RTSP mode" );
426         free( p_sys );
427         return VLC_EGENERIC;
428     }
429
430     p_sys->i_ttl = var_GetInteger( p_stream, SOUT_CFG_PREFIX "ttl" );
431     if( p_sys->i_ttl == -1 )
432     {
433         /* Normally, we should let the default hop limit up to the core,
434          * but we have to know it to build our SDP properly, which is why
435          * we ask the core. FIXME: broken when neither sout-rtp-ttl nor
436          * ttl are set. */
437         p_sys->i_ttl = config_GetInt( p_stream, "ttl" );
438     }
439
440     p_sys->b_latm = var_GetBool( p_stream, SOUT_CFG_PREFIX "mp4a-latm" );
441
442     p_sys->i_payload_type = 96;
443     p_sys->i_es = 0;
444     p_sys->es   = NULL;
445     p_sys->rtsp = NULL;
446     p_sys->psz_sdp = NULL;
447
448     p_sys->b_export_sap = false;
449     p_sys->b_export_sdp_file = false;
450     p_sys->p_session = NULL;
451
452     p_sys->p_httpd_host = NULL;
453     p_sys->p_httpd_file = NULL;
454
455     p_stream->p_sys     = p_sys;
456
457     vlc_mutex_init( &p_sys->lock_sdp );
458     vlc_mutex_init( &p_sys->lock_es );
459
460     psz = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "mux" );
461     if( psz != NULL )
462     {
463         sout_stream_id_t *id;
464
465         /* Check muxer type */
466         if( strncasecmp( psz, "ps", 2 )
467          && strncasecmp( psz, "mpeg1", 5 )
468          && strncasecmp( psz, "ts", 2 ) )
469         {
470             msg_Err( p_stream, "unsupported muxer type for RTP (only TS/PS)" );
471             free( psz );
472             vlc_mutex_destroy( &p_sys->lock_sdp );
473             vlc_mutex_destroy( &p_sys->lock_es );
474             free( p_sys );
475             return VLC_EGENERIC;
476         }
477
478         p_sys->p_grab = GrabberCreate( p_stream );
479         p_sys->p_mux = sout_MuxNew( p_sout, psz, p_sys->p_grab );
480         free( psz );
481
482         if( p_sys->p_mux == NULL )
483         {
484             msg_Err( p_stream, "cannot create muxer" );
485             sout_AccessOutDelete( p_sys->p_grab );
486             vlc_mutex_destroy( &p_sys->lock_sdp );
487             vlc_mutex_destroy( &p_sys->lock_es );
488             free( p_sys );
489             return VLC_EGENERIC;
490         }
491
492         id = Add( p_stream, NULL );
493         if( id == NULL )
494         {
495             sout_MuxDelete( p_sys->p_mux );
496             sout_AccessOutDelete( p_sys->p_grab );
497             vlc_mutex_destroy( &p_sys->lock_sdp );
498             vlc_mutex_destroy( &p_sys->lock_es );
499             free( p_sys );
500             return VLC_EGENERIC;
501         }
502
503         p_sys->packet = NULL;
504
505         p_stream->pf_add  = MuxAdd;
506         p_stream->pf_del  = MuxDel;
507         p_stream->pf_send = MuxSend;
508     }
509     else
510     {
511         p_sys->p_mux    = NULL;
512         p_sys->p_grab   = NULL;
513
514         p_stream->pf_add    = Add;
515         p_stream->pf_del    = Del;
516         p_stream->pf_send   = Send;
517     }
518
519     if( var_GetBool( p_stream, SOUT_CFG_PREFIX"sap" ) )
520         SDPHandleUrl( p_stream, "sap" );
521
522     psz = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "sdp" );
523     if( psz != NULL )
524     {
525         config_chain_t *p_cfg;
526
527         SDPHandleUrl( p_stream, psz );
528
529         for( p_cfg = p_stream->p_cfg; p_cfg != NULL; p_cfg = p_cfg->p_next )
530         {
531             if( !strcmp( p_cfg->psz_name, "sdp" ) )
532             {
533                 if( p_cfg->psz_value == NULL || *p_cfg->psz_value == '\0' )
534                     continue;
535
536                 /* needed both :sout-rtp-sdp= and rtp{sdp=} can be used */
537                 if( !strcmp( p_cfg->psz_value, psz ) )
538                     continue;
539
540                 SDPHandleUrl( p_stream, p_cfg->psz_value );
541             }
542         }
543         free( psz );
544     }
545
546     /* update p_sout->i_out_pace_nocontrol */
547     p_stream->p_sout->i_out_pace_nocontrol++;
548
549     return VLC_SUCCESS;
550 }
551
552 /*****************************************************************************
553  * Close:
554  *****************************************************************************/
555 static void Close( vlc_object_t * p_this )
556 {
557     sout_stream_t     *p_stream = (sout_stream_t*)p_this;
558     sout_stream_sys_t *p_sys = p_stream->p_sys;
559
560     /* update p_sout->i_out_pace_nocontrol */
561     p_stream->p_sout->i_out_pace_nocontrol--;
562
563     if( p_sys->p_mux )
564     {
565         assert( p_sys->i_es == 1 );
566         Del( p_stream, p_sys->es[0] );
567
568         sout_MuxDelete( p_sys->p_mux );
569         sout_AccessOutDelete( p_sys->p_grab );
570         if( p_sys->packet )
571         {
572             block_Release( p_sys->packet );
573         }
574         if( p_sys->b_export_sap )
575         {
576             p_sys->p_mux = NULL;
577             SapSetup( p_stream );
578         }
579     }
580
581     if( p_sys->rtsp != NULL )
582         RtspUnsetup( p_sys->rtsp );
583
584     vlc_mutex_destroy( &p_sys->lock_sdp );
585     vlc_mutex_destroy( &p_sys->lock_es );
586
587     if( p_sys->p_httpd_file )
588         httpd_FileDelete( p_sys->p_httpd_file );
589
590     if( p_sys->p_httpd_host )
591         httpd_HostDelete( p_sys->p_httpd_host );
592
593     free( p_sys->psz_sdp );
594
595     if( p_sys->b_export_sdp_file )
596     {
597 #ifdef HAVE_UNISTD_H
598         unlink( p_sys->psz_sdp_file );
599 #endif
600         free( p_sys->psz_sdp_file );
601     }
602     free( p_sys->psz_destination );
603     free( p_sys );
604 }
605
606 /*****************************************************************************
607  * SDPHandleUrl:
608  *****************************************************************************/
609 static void SDPHandleUrl( sout_stream_t *p_stream, const char *psz_url )
610 {
611     sout_stream_sys_t *p_sys = p_stream->p_sys;
612     vlc_url_t url;
613
614     vlc_UrlParse( &url, psz_url, 0 );
615     if( url.psz_protocol && !strcasecmp( url.psz_protocol, "http" ) )
616     {
617         if( p_sys->p_httpd_file )
618         {
619             msg_Err( p_stream, "you can use sdp=http:// only once" );
620             goto out;
621         }
622
623         if( HttpSetup( p_stream, &url ) )
624         {
625             msg_Err( p_stream, "cannot export SDP as HTTP" );
626         }
627     }
628     else if( url.psz_protocol && !strcasecmp( url.psz_protocol, "rtsp" ) )
629     {
630         if( p_sys->rtsp != NULL )
631         {
632             msg_Err( p_stream, "you can use sdp=rtsp:// only once" );
633             goto out;
634         }
635
636         /* FIXME test if destination is multicast or no destination at all */
637         p_sys->rtsp = RtspSetup( p_stream, &url );
638         if( p_sys->rtsp == NULL )
639         {
640             msg_Err( p_stream, "cannot export SDP as RTSP" );
641         }
642
643         if( p_sys->p_mux != NULL )
644         {
645             sout_stream_id_t *id = p_sys->es[0];
646             id->rtsp_id = RtspAddId( p_sys->rtsp, id, 0, GetDWBE( id->ssrc ),
647                                      p_sys->psz_destination, p_sys->i_ttl,
648                                      id->i_port, id->i_port + 1 );
649         }
650     }
651     else if( ( url.psz_protocol && !strcasecmp( url.psz_protocol, "sap" ) ) ||
652              ( url.psz_host && !strcasecmp( url.psz_host, "sap" ) ) )
653     {
654         p_sys->b_export_sap = true;
655         SapSetup( p_stream );
656     }
657     else if( url.psz_protocol && !strcasecmp( url.psz_protocol, "file" ) )
658     {
659         if( p_sys->b_export_sdp_file )
660         {
661             msg_Err( p_stream, "you can use sdp=file:// only once" );
662             goto out;
663         }
664         p_sys->b_export_sdp_file = true;
665         psz_url = &psz_url[5];
666         if( psz_url[0] == '/' && psz_url[1] == '/' )
667             psz_url += 2;
668         p_sys->psz_sdp_file = strdup( psz_url );
669     }
670     else
671     {
672         msg_Warn( p_stream, "unknown protocol for SDP (%s)",
673                   url.psz_protocol );
674     }
675
676 out:
677     vlc_UrlClean( &url );
678 }
679
680 /*****************************************************************************
681  * SDPGenerate
682  *****************************************************************************/
683 /*static*/
684 char *SDPGenerate( const sout_stream_t *p_stream, const char *rtsp_url )
685 {
686     const sout_stream_sys_t *p_sys = p_stream->p_sys;
687     char *psz_sdp;
688     struct sockaddr_storage dst;
689     socklen_t dstlen;
690     int i;
691     /*
692      * When we have a fixed destination (typically when we do multicast),
693      * we need to put the actual port numbers in the SDP.
694      * When there is no fixed destination, we only support RTSP unicast
695      * on-demand setup, so we should rather let the clients decide which ports
696      * to use.
697      * When there is both a fixed destination and RTSP unicast, we need to
698      * put port numbers used by the fixed destination, otherwise the SDP would
699      * become totally incorrect for multicast use. It should be noted that
700      * port numbers from SDP with RTSP are only "recommendation" from the
701      * server to the clients (per RFC2326), so only broken clients will fail
702      * to handle this properly. There is no solution but to use two differents
703      * output chain with two different RTSP URLs if you need to handle this
704      * scenario.
705      */
706     int inclport;
707
708     if( p_sys->psz_destination != NULL )
709     {
710         inclport = 1;
711
712         /* Oh boy, this is really ugly! (+ race condition on lock_es) */
713         dstlen = sizeof( dst );
714         if( p_sys->es[0]->listen_fd != NULL )
715             getsockname( p_sys->es[0]->listen_fd[0],
716                          (struct sockaddr *)&dst, &dstlen );
717         else
718             getpeername( p_sys->es[0]->sinkv[0].rtp_fd,
719                          (struct sockaddr *)&dst, &dstlen );
720     }
721     else
722     {
723         inclport = 0;
724
725         /* Dummy destination address for RTSP */
726         memset (&dst, 0, sizeof( struct sockaddr_in ) );
727         dst.ss_family = AF_INET;
728 #ifdef HAVE_SA_LEN
729         dst.ss_len =
730 #endif
731         dstlen = sizeof( struct sockaddr_in );
732     }
733
734     psz_sdp = vlc_sdp_Start( VLC_OBJECT( p_stream ), SOUT_CFG_PREFIX,
735                              NULL, 0, (struct sockaddr *)&dst, dstlen );
736     if( psz_sdp == NULL )
737         return NULL;
738
739     /* TODO: a=source-filter */
740     if( p_sys->rtcp_mux )
741         sdp_AddAttribute( &psz_sdp, "rtcp-mux", NULL );
742
743     if( rtsp_url != NULL )
744         sdp_AddAttribute ( &psz_sdp, "control", "%s", rtsp_url );
745
746     /* FIXME: locking?! */
747     for( i = 0; i < p_sys->i_es; i++ )
748     {
749         sout_stream_id_t *id = p_sys->es[i];
750         const char *mime_major; /* major MIME type */
751         const char *proto = "RTP/AVP"; /* protocol */
752
753         switch( id->i_cat )
754         {
755             case VIDEO_ES:
756                 mime_major = "video";
757                 break;
758             case AUDIO_ES:
759                 mime_major = "audio";
760                 break;
761             case SPU_ES:
762                 mime_major = "text";
763                 break;
764             default:
765                 continue;
766         }
767
768         if( rtsp_url == NULL )
769         {
770             switch( p_sys->proto )
771             {
772                 case IPPROTO_UDP:
773                     break;
774                 case IPPROTO_TCP:
775                     proto = "TCP/RTP/AVP";
776                     break;
777                 case IPPROTO_DCCP:
778                     proto = "DCCP/RTP/AVP";
779                     break;
780                 case IPPROTO_UDPLITE:
781                     continue;
782             }
783         }
784
785         sdp_AddMedia( &psz_sdp, mime_major, proto, inclport * id->i_port,
786                       id->i_payload_type, false, id->i_bitrate,
787                       id->psz_enc, id->i_clock_rate, id->i_channels,
788                       id->psz_fmtp);
789
790         if( rtsp_url != NULL )
791         {
792             assert( strlen( rtsp_url ) > 0 );
793             bool addslash = ( rtsp_url[strlen( rtsp_url ) - 1] != '/' );
794             sdp_AddAttribute ( &psz_sdp, "control",
795                                addslash ? "%s/trackID=%u" : "%strackID=%u",
796                                rtsp_url, i );
797         }
798         else
799         {
800             if( id->listen_fd != NULL )
801                 sdp_AddAttribute( &psz_sdp, "setup", "passive" );
802             if( p_sys->proto == IPPROTO_DCCP )
803                 sdp_AddAttribute( &psz_sdp, "dccp-service-code",
804                                   "SC:RTP%c", toupper( mime_major[0] ) );
805         }
806     }
807
808     return psz_sdp;
809 }
810
811 /*****************************************************************************
812  * RTP mux
813  *****************************************************************************/
814
815 static void sprintf_hexa( char *s, uint8_t *p_data, int i_data )
816 {
817     static const char hex[16] = "0123456789abcdef";
818     int i;
819
820     for( i = 0; i < i_data; i++ )
821     {
822         s[2*i+0] = hex[(p_data[i]>>4)&0xf];
823         s[2*i+1] = hex[(p_data[i]   )&0xf];
824     }
825     s[2*i_data] = '\0';
826 }
827
828 /**
829  * Shrink the MTU down to a fixed packetization time (for audio).
830  */
831 static void
832 rtp_set_ptime (sout_stream_id_t *id, unsigned ptime_ms, size_t bytes)
833 {
834     /* Samples per second */
835     size_t spl = (id->i_clock_rate - 1) * ptime_ms / 1000 + 1;
836     bytes *= id->i_channels;
837     spl *= bytes;
838
839     if (spl < rtp_mtu (id)) /* MTU is big enough for ptime */
840         id->i_mtu = 12 + spl;
841     else /* MTU is too small for ptime, align to a sample boundary */
842         id->i_mtu = 12 + (((id->i_mtu - 12) / bytes) * bytes);
843 }
844
845 /** Add an ES as a new RTP stream */
846 static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
847 {
848     /* NOTE: As a special case, if we use a non-RTP
849      * mux (TS/PS), then p_fmt is NULL. */
850     sout_stream_sys_t *p_sys = p_stream->p_sys;
851     sout_stream_id_t  *id;
852     int               i_port, cscov = -1;
853     char              *psz_sdp;
854
855     id = vlc_object_create( p_stream, sizeof( sout_stream_id_t ) );
856     if( id == NULL )
857         return NULL;
858     vlc_object_attach( id, p_stream );
859
860     /* Choose the port */
861     i_port = 0;
862     if( p_fmt == NULL )
863         ;
864     else
865     if( p_fmt->i_cat == AUDIO_ES && p_sys->i_port_audio > 0 )
866     {
867         i_port = p_sys->i_port_audio;
868         p_sys->i_port_audio = 0;
869     }
870     else
871     if( p_fmt->i_cat == VIDEO_ES && p_sys->i_port_video > 0 )
872     {
873         i_port = p_sys->i_port_video;
874         p_sys->i_port_video = 0;
875     }
876
877     while( i_port == 0 )
878     {
879         if( p_sys->i_port != p_sys->i_port_audio
880          && p_sys->i_port != p_sys->i_port_video )
881         {
882             i_port = p_sys->i_port;
883             p_sys->i_port += 2;
884             break;
885         }
886         p_sys->i_port += 2;
887     }
888
889     id->p_stream   = p_stream;
890
891     id->i_sequence = rand()&0xffff;
892     id->i_payload_type = p_sys->i_payload_type;
893     id->ssrc[0] = rand()&0xff;
894     id->ssrc[1] = rand()&0xff;
895     id->ssrc[2] = rand()&0xff;
896     id->ssrc[3] = rand()&0xff;
897
898     id->psz_enc    = NULL;
899     id->psz_fmtp   = NULL;
900     id->i_clock_rate = 90000; /* most common case for video */
901     id->i_channels = 0;
902     id->i_port     = i_port;
903     if( p_fmt != NULL )
904     {
905         id->i_cat  = p_fmt->i_cat;
906         if( p_fmt->i_cat == AUDIO_ES )
907         {
908             id->i_clock_rate = p_fmt->audio.i_rate;
909             id->i_channels = p_fmt->audio.i_channels;
910         }
911         id->i_bitrate = p_fmt->i_bitrate/1000; /* Stream bitrate in kbps */
912     }
913     else
914     {
915         id->i_cat  = VIDEO_ES;
916         id->i_bitrate = 0;
917     }
918
919     id->i_mtu = config_GetInt( p_stream, "mtu" );
920     if( id->i_mtu <= 12 + 16 )
921         id->i_mtu = 576 - 20 - 8; /* pessimistic */
922     msg_Dbg( p_stream, "maximum RTP packet size: %d bytes", id->i_mtu );
923
924     id->srtp = NULL;
925     id->pf_packetize = NULL;
926
927     char *key = var_CreateGetNonEmptyString (p_stream, SOUT_CFG_PREFIX"key");
928     if (key)
929     {
930         id->srtp = srtp_create (SRTP_ENCR_AES_CM, SRTP_AUTH_HMAC_SHA1, 10,
931                                    SRTP_PRF_AES_CM, SRTP_RCC_MODE1);
932         if (id->srtp == NULL)
933         {
934             free (key);
935             goto error;
936         }
937
938         char *salt = var_CreateGetNonEmptyString (p_stream, SOUT_CFG_PREFIX"salt");
939         errno = srtp_setkeystring (id->srtp, key, salt ? salt : "");
940         free (salt);
941         free (key);
942         if (errno)
943         {
944             msg_Err (p_stream, "bad SRTP key/salt combination (%m)");
945             goto error;
946         }
947         id->i_sequence = 0; /* FIXME: awful hack for libvlc_srtp */
948     }
949
950     vlc_mutex_init( &id->lock_sink );
951     id->sinkc = 0;
952     id->sinkv = NULL;
953     id->rtsp_id = NULL;
954     id->p_fifo = NULL;
955     id->listen_fd = NULL;
956
957     id->i_caching =
958         (int64_t)1000 * var_GetInteger( p_stream, SOUT_CFG_PREFIX "caching");
959
960     if( p_sys->psz_destination != NULL )
961         switch( p_sys->proto )
962         {
963             case IPPROTO_DCCP:
964             {
965                 const char *code;
966                 switch (id->i_cat)
967                 {
968                     case VIDEO_ES: code = "RTPV";     break;
969                     case AUDIO_ES: code = "RTPARTPV"; break;
970                     case SPU_ES:   code = "RTPTRPTV"; break;
971                     default:       code = "RTPORTPV"; break;
972                 }
973                 var_SetString (p_stream, "dccp-service", code);
974             }   /* fall through */
975             case IPPROTO_TCP:
976                 id->listen_fd = net_Listen( VLC_OBJECT(p_stream),
977                                             p_sys->psz_destination, i_port,
978                                             p_sys->proto );
979                 if( id->listen_fd == NULL )
980                 {
981                     msg_Err( p_stream, "passive COMEDIA RTP socket failed" );
982                     goto error;
983                 }
984                 break;
985
986             default:
987             {
988                 int ttl = (p_sys->i_ttl > 0) ? p_sys->i_ttl : -1;
989                 int fd = net_ConnectDgram( p_stream, p_sys->psz_destination,
990                                            i_port, ttl, p_sys->proto );
991                 if( fd == -1 )
992                 {
993                     msg_Err( p_stream, "cannot create RTP socket" );
994                     goto error;
995                 }
996                 rtp_add_sink( id, fd, p_sys->rtcp_mux );
997             }
998         }
999
1000     if( p_fmt == NULL )
1001     {
1002         char *psz = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "mux" );
1003
1004         if( psz == NULL ) /* Uho! */
1005             ;
1006         else
1007         if( strncmp( psz, "ts", 2 ) == 0 )
1008         {
1009             id->i_payload_type = 33;
1010             id->psz_enc = "MP2T";
1011         }
1012         else
1013         {
1014             id->psz_enc = "MP2P";
1015         }
1016         free( psz );
1017     }
1018     else
1019     switch( p_fmt->i_codec )
1020     {
1021         case VLC_FOURCC( 'u', 'l', 'a', 'w' ):
1022             if( p_fmt->audio.i_channels == 1 && p_fmt->audio.i_rate == 8000 )
1023                 id->i_payload_type = 0;
1024             id->psz_enc = "PCMU";
1025             id->pf_packetize = rtp_packetize_split;
1026             rtp_set_ptime (id, 20, 1);
1027             break;
1028         case VLC_FOURCC( 'a', 'l', 'a', 'w' ):
1029             if( p_fmt->audio.i_channels == 1 && p_fmt->audio.i_rate == 8000 )
1030                 id->i_payload_type = 8;
1031             id->psz_enc = "PCMA";
1032             id->pf_packetize = rtp_packetize_split;
1033             rtp_set_ptime (id, 20, 1);
1034             break;
1035         case VLC_FOURCC( 's', '1', '6', 'b' ):
1036             if( p_fmt->audio.i_channels == 1 && p_fmt->audio.i_rate == 44100 )
1037             {
1038                 id->i_payload_type = 11;
1039             }
1040             else if( p_fmt->audio.i_channels == 2 &&
1041                      p_fmt->audio.i_rate == 44100 )
1042             {
1043                 id->i_payload_type = 10;
1044             }
1045             id->psz_enc = "L16";
1046             id->pf_packetize = rtp_packetize_split;
1047             rtp_set_ptime (id, 20, 2);
1048             break;
1049         case VLC_FOURCC( 'u', '8', ' ', ' ' ):
1050             id->psz_enc = "L8";
1051             id->pf_packetize = rtp_packetize_split;
1052             rtp_set_ptime (id, 20, 1);
1053             break;
1054         case VLC_FOURCC( 'm', 'p', 'g', 'a' ):
1055         case VLC_FOURCC( 'm', 'p', '3', ' ' ):
1056             id->i_payload_type = 14;
1057             id->psz_enc = "MPA";
1058             id->i_clock_rate = 90000; /* not 44100 */
1059             id->pf_packetize = rtp_packetize_mpa;
1060             break;
1061         case VLC_FOURCC( 'm', 'p', 'g', 'v' ):
1062             id->i_payload_type = 32;
1063             id->psz_enc = "MPV";
1064             id->pf_packetize = rtp_packetize_mpv;
1065             break;
1066         case VLC_FOURCC( 'G', '7', '2', '6' ):
1067         case VLC_FOURCC( 'g', '7', '2', '6' ):
1068             switch( p_fmt->i_bitrate / 1000 )
1069             {
1070             case 16:
1071                 id->psz_enc = "G726-16";
1072                 id->pf_packetize = rtp_packetize_g726_16;
1073                 break;
1074             case 24:
1075                 id->psz_enc = "G726-24";
1076                 id->pf_packetize = rtp_packetize_g726_24;
1077                 break;
1078             case 32:
1079                 id->psz_enc = "G726-32";
1080                 id->pf_packetize = rtp_packetize_g726_32;
1081                 break;
1082             case 40:
1083                 id->psz_enc = "G726-40";
1084                 id->pf_packetize = rtp_packetize_g726_40;
1085                 break;
1086             }
1087             break;
1088         case VLC_FOURCC( 'a', '5', '2', ' ' ):
1089             id->psz_enc = "ac3";
1090             id->pf_packetize = rtp_packetize_ac3;
1091             break;
1092         case VLC_FOURCC( 'H', '2', '6', '3' ):
1093             id->psz_enc = "H263-1998";
1094             id->pf_packetize = rtp_packetize_h263;
1095             break;
1096         case VLC_FOURCC( 'h', '2', '6', '4' ):
1097             id->psz_enc = "H264";
1098             id->pf_packetize = rtp_packetize_h264;
1099             id->psz_fmtp = NULL;
1100
1101             if( p_fmt->i_extra > 0 )
1102             {
1103                 uint8_t *p_buffer = p_fmt->p_extra;
1104                 int     i_buffer = p_fmt->i_extra;
1105                 char    *p_64_sps = NULL;
1106                 char    *p_64_pps = NULL;
1107                 char    hexa[6+1];
1108
1109                 while( i_buffer > 4 &&
1110                        p_buffer[0] == 0 && p_buffer[1] == 0 &&
1111                        p_buffer[2] == 0 && p_buffer[3] == 1 )
1112                 {
1113                     const int i_nal_type = p_buffer[4]&0x1f;
1114                     int i_offset;
1115                     int i_size      = 0;
1116
1117                     msg_Dbg( p_stream, "we found a startcode for NAL with TYPE:%d", i_nal_type );
1118
1119                     i_size = i_buffer;
1120                     for( i_offset = 4; i_offset+3 < i_buffer ; i_offset++)
1121                     {
1122                         if( !memcmp (p_buffer + i_offset, "\x00\x00\x00\x01", 4 ) )
1123                         {
1124                             /* we found another startcode */
1125                             i_size = i_offset;
1126                             break;
1127                         }
1128                     }
1129                     if( i_nal_type == 7 )
1130                     {
1131                         p_64_sps = vlc_b64_encode_binary( &p_buffer[4], i_size - 4 );
1132                         sprintf_hexa( hexa, &p_buffer[5], 3 );
1133                     }
1134                     else if( i_nal_type == 8 )
1135                     {
1136                         p_64_pps = vlc_b64_encode_binary( &p_buffer[4], i_size - 4 );
1137                     }
1138                     i_buffer -= i_size;
1139                     p_buffer += i_size;
1140                 }
1141                 /* */
1142                 if( p_64_sps && p_64_pps &&
1143                     ( asprintf( &id->psz_fmtp,
1144                                 "packetization-mode=1;profile-level-id=%s;"
1145                                 "sprop-parameter-sets=%s,%s;", hexa, p_64_sps,
1146                                 p_64_pps ) == -1 ) )
1147                     id->psz_fmtp = NULL;
1148                 free( p_64_sps );
1149                 free( p_64_pps );
1150             }
1151             if( !id->psz_fmtp )
1152                 id->psz_fmtp = strdup( "packetization-mode=1" );
1153             break;
1154
1155         case VLC_FOURCC( 'm', 'p', '4', 'v' ):
1156         {
1157             char hexa[2*p_fmt->i_extra +1];
1158
1159             id->psz_enc = "MP4V-ES";
1160             id->pf_packetize = rtp_packetize_split;
1161             if( p_fmt->i_extra > 0 )
1162             {
1163                 sprintf_hexa( hexa, p_fmt->p_extra, p_fmt->i_extra );
1164                 if( asprintf( &id->psz_fmtp,
1165                               "profile-level-id=3; config=%s;", hexa ) == -1 )
1166                     id->psz_fmtp = NULL;
1167             }
1168             break;
1169         }
1170         case VLC_FOURCC( 'm', 'p', '4', 'a' ):
1171         {
1172             if(!p_sys->b_latm)
1173             {
1174                 char hexa[2*p_fmt->i_extra +1];
1175
1176                 id->psz_enc = "mpeg4-generic";
1177                 id->pf_packetize = rtp_packetize_mp4a;
1178                 sprintf_hexa( hexa, p_fmt->p_extra, p_fmt->i_extra );
1179                 if( asprintf( &id->psz_fmtp,
1180                               "streamtype=5; profile-level-id=15; "
1181                               "mode=AAC-hbr; config=%s; SizeLength=13; "
1182                               "IndexLength=3; IndexDeltaLength=3; Profile=1;",
1183                               hexa ) == -1 )
1184                     id->psz_fmtp = NULL;
1185             }
1186             else
1187             {
1188                 char hexa[13];
1189                 int i;
1190                 unsigned char config[6];
1191                 unsigned int aacsrates[15] = {
1192                     96000, 88200, 64000, 48000, 44100, 32000, 24000, 22050,
1193                     16000, 12000, 11025, 8000, 7350, 0, 0 };
1194
1195                 for( i = 0; i < 15; i++ )
1196                     if( p_fmt->audio.i_rate == aacsrates[i] )
1197                         break;
1198
1199                 config[0]=0x40;
1200                 config[1]=0;
1201                 config[2]=0x20|i;
1202                 config[3]=p_fmt->audio.i_channels<<4;
1203                 config[4]=0x3f;
1204                 config[5]=0xc0;
1205
1206                 id->psz_enc = "MP4A-LATM";
1207                 id->pf_packetize = rtp_packetize_mp4a_latm;
1208                 sprintf_hexa( hexa, config, 6 );
1209                 if( asprintf( &id->psz_fmtp, "profile-level-id=15; "
1210                               "object=2; cpresent=0; config=%s", hexa ) == -1 )
1211                     id->psz_fmtp = NULL;
1212             }
1213             break;
1214         }
1215         case VLC_FOURCC( 's', 'a', 'm', 'r' ):
1216             id->psz_enc = "AMR";
1217             id->psz_fmtp = strdup( "octet-align=1" );
1218             id->pf_packetize = rtp_packetize_amr;
1219             break;
1220         case VLC_FOURCC( 's', 'a', 'w', 'b' ):
1221             id->psz_enc = "AMR-WB";
1222             id->psz_fmtp = strdup( "octet-align=1" );
1223             id->pf_packetize = rtp_packetize_amr;
1224             break;
1225         case VLC_FOURCC( 's', 'p', 'x', ' ' ):
1226             id->i_payload_type = p_sys->i_payload_type++;
1227             id->psz_enc = "SPEEX";
1228             id->pf_packetize = rtp_packetize_spx;
1229             break;
1230         case VLC_FOURCC( 't', '1', '4', '0' ):
1231             id->psz_enc = "t140" ;
1232             id->i_clock_rate = 1000;
1233             id->pf_packetize = rtp_packetize_t140;
1234             break;
1235
1236         default:
1237             msg_Err( p_stream, "cannot add this stream (unsupported "
1238                      "codec:%4.4s)", (char*)&p_fmt->i_codec );
1239             goto error;
1240     }
1241
1242     if( cscov != -1 )
1243         cscov += 8 /* UDP */ + 12 /* RTP */;
1244     if( id->sinkc > 0 )
1245         net_SetCSCov( id->sinkv[0].rtp_fd, cscov, -1 );
1246
1247     if( id->i_payload_type == p_sys->i_payload_type )
1248         p_sys->i_payload_type++;
1249
1250     if( p_sys->rtsp != NULL )
1251         id->rtsp_id = RtspAddId( p_sys->rtsp, id, p_sys->i_es,
1252                                  GetDWBE( id->ssrc ),
1253                                  p_sys->psz_destination,
1254                                  p_sys->i_ttl, id->i_port, id->i_port + 1 );
1255
1256     id->p_fifo = block_FifoNew();
1257     if( vlc_thread_create( id, "RTP send thread", ThreadSend,
1258                            VLC_THREAD_PRIORITY_HIGHEST, false ) )
1259         goto error;
1260
1261     /* Update p_sys context */
1262     vlc_mutex_lock( &p_sys->lock_es );
1263     TAB_APPEND( p_sys->i_es, p_sys->es, id );
1264     vlc_mutex_unlock( &p_sys->lock_es );
1265
1266     psz_sdp = SDPGenerate( p_stream, NULL );
1267
1268     vlc_mutex_lock( &p_sys->lock_sdp );
1269     free( p_sys->psz_sdp );
1270     p_sys->psz_sdp = psz_sdp;
1271     vlc_mutex_unlock( &p_sys->lock_sdp );
1272
1273     msg_Dbg( p_stream, "sdp=\n%s", p_sys->psz_sdp );
1274
1275     /* Update SDP (sap/file) */
1276     if( p_sys->b_export_sap ) SapSetup( p_stream );
1277     if( p_sys->b_export_sdp_file ) FileSetup( p_stream );
1278
1279     return id;
1280
1281 error:
1282     Del( p_stream, id );
1283     return NULL;
1284 }
1285
1286 static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
1287 {
1288     sout_stream_sys_t *p_sys = p_stream->p_sys;
1289
1290     if( id->p_fifo != NULL )
1291     {
1292         vlc_object_kill( id );
1293         vlc_thread_join( id );
1294         block_FifoRelease( id->p_fifo );
1295     }
1296
1297     vlc_mutex_lock( &p_sys->lock_es );
1298     TAB_REMOVE( p_sys->i_es, p_sys->es, id );
1299     vlc_mutex_unlock( &p_sys->lock_es );
1300
1301     /* Release port */
1302     if( id->i_port == var_GetInteger( p_stream, "port-audio" ) )
1303         p_sys->i_port_audio = id->i_port;
1304     if( id->i_port == var_GetInteger( p_stream, "port-video" ) )
1305         p_sys->i_port_video = id->i_port;
1306
1307     free( id->psz_fmtp );
1308
1309     if( id->rtsp_id )
1310         RtspDelId( p_sys->rtsp, id->rtsp_id );
1311     if( id->sinkc > 0 )
1312         rtp_del_sink( id, id->sinkv[0].rtp_fd ); /* sink for explicit dst= */
1313     if( id->listen_fd != NULL )
1314         net_ListenClose( id->listen_fd );
1315     if( id->srtp != NULL )
1316         srtp_destroy( id->srtp );
1317
1318     vlc_mutex_destroy( &id->lock_sink );
1319
1320     /* Update SDP (sap/file) */
1321     if( p_sys->b_export_sap && !p_sys->p_mux ) SapSetup( p_stream );
1322     if( p_sys->b_export_sdp_file ) FileSetup( p_stream );
1323
1324     vlc_object_detach( id );
1325     vlc_object_release( id );
1326     return VLC_SUCCESS;
1327 }
1328
1329 static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
1330                  block_t *p_buffer )
1331 {
1332     block_t *p_next;
1333
1334     assert( p_stream->p_sys->p_mux == NULL );
1335     (void)p_stream;
1336
1337     while( p_buffer != NULL )
1338     {
1339         p_next = p_buffer->p_next;
1340         if( id->pf_packetize( id, p_buffer ) )
1341             break;
1342
1343         block_Release( p_buffer );
1344         p_buffer = p_next;
1345     }
1346     return VLC_SUCCESS;
1347 }
1348
1349 /****************************************************************************
1350  * SAP:
1351  ****************************************************************************/
1352 static int SapSetup( sout_stream_t *p_stream )
1353 {
1354     sout_stream_sys_t *p_sys = p_stream->p_sys;
1355     sout_instance_t   *p_sout = p_stream->p_sout;
1356
1357     /* Remove the previous session */
1358     if( p_sys->p_session != NULL)
1359     {
1360         sout_AnnounceUnRegister( p_sout, p_sys->p_session);
1361         p_sys->p_session = NULL;
1362     }
1363
1364     if( ( p_sys->i_es > 0 || p_sys->p_mux ) && p_sys->psz_sdp && *p_sys->psz_sdp )
1365     {
1366         announce_method_t *p_method = sout_SAPMethod();
1367         p_sys->p_session = sout_AnnounceRegisterSDP( p_sout,
1368                                                      p_sys->psz_sdp,
1369                                                      p_sys->psz_destination,
1370                                                      p_method );
1371         sout_MethodRelease( p_method );
1372     }
1373
1374     return VLC_SUCCESS;
1375 }
1376
1377 /****************************************************************************
1378 * File:
1379 ****************************************************************************/
1380 static int FileSetup( sout_stream_t *p_stream )
1381 {
1382     sout_stream_sys_t *p_sys = p_stream->p_sys;
1383     FILE            *f;
1384
1385     if( ( f = utf8_fopen( p_sys->psz_sdp_file, "wt" ) ) == NULL )
1386     {
1387         msg_Err( p_stream, "cannot open file '%s' (%m)",
1388                  p_sys->psz_sdp_file );
1389         return VLC_EGENERIC;
1390     }
1391
1392     fputs( p_sys->psz_sdp, f );
1393     fclose( f );
1394
1395     return VLC_SUCCESS;
1396 }
1397
1398 /****************************************************************************
1399  * HTTP:
1400  ****************************************************************************/
1401 static int  HttpCallback( httpd_file_sys_t *p_args,
1402                           httpd_file_t *, uint8_t *p_request,
1403                           uint8_t **pp_data, int *pi_data );
1404
1405 static int HttpSetup( sout_stream_t *p_stream, const vlc_url_t *url)
1406 {
1407     sout_stream_sys_t *p_sys = p_stream->p_sys;
1408
1409     p_sys->p_httpd_host = httpd_HostNew( VLC_OBJECT(p_stream), url->psz_host,
1410                                          url->i_port > 0 ? url->i_port : 80 );
1411     if( p_sys->p_httpd_host )
1412     {
1413         p_sys->p_httpd_file = httpd_FileNew( p_sys->p_httpd_host,
1414                                              url->psz_path ? url->psz_path : "/",
1415                                              "application/sdp",
1416                                              NULL, NULL, NULL,
1417                                              HttpCallback, (void*)p_sys );
1418     }
1419     if( p_sys->p_httpd_file == NULL )
1420     {
1421         return VLC_EGENERIC;
1422     }
1423     return VLC_SUCCESS;
1424 }
1425
1426 static int  HttpCallback( httpd_file_sys_t *p_args,
1427                           httpd_file_t *f, uint8_t *p_request,
1428                           uint8_t **pp_data, int *pi_data )
1429 {
1430     VLC_UNUSED(f); VLC_UNUSED(p_request);
1431     sout_stream_sys_t *p_sys = (sout_stream_sys_t*)p_args;
1432
1433     vlc_mutex_lock( &p_sys->lock_sdp );
1434     if( p_sys->psz_sdp && *p_sys->psz_sdp )
1435     {
1436         *pi_data = strlen( p_sys->psz_sdp );
1437         *pp_data = malloc( *pi_data );
1438         memcpy( *pp_data, p_sys->psz_sdp, *pi_data );
1439     }
1440     else
1441     {
1442         *pp_data = NULL;
1443         *pi_data = 0;
1444     }
1445     vlc_mutex_unlock( &p_sys->lock_sdp );
1446
1447     return VLC_SUCCESS;
1448 }
1449
1450 /****************************************************************************
1451  * RTP send
1452  ****************************************************************************/
1453 static void* ThreadSend( vlc_object_t *p_this )
1454 {
1455     sout_stream_id_t *id = (sout_stream_id_t *)p_this;
1456     unsigned i_caching = id->i_caching;
1457
1458     for (;;)
1459     {
1460         block_t *out = block_FifoGet( id->p_fifo );
1461         block_cleanup_push (out);
1462
1463         if( id->srtp )
1464         {   /* FIXME: this is awfully inefficient */
1465             size_t len = out->i_buffer;
1466             out = block_Realloc( out, 0, len + 10 );
1467             out->i_buffer = len;
1468
1469             int canc = vlc_savecancel ();
1470             int val = srtp_send( id->srtp, out->p_buffer, &len, len + 10 );
1471             vlc_restorecancel (canc);
1472             if( val )
1473             {
1474                 errno = val;
1475                 msg_Dbg( id, "SRTP sending error: %m" );
1476                 block_Release( out );
1477                 out = NULL;
1478             }
1479             else
1480                 out->i_buffer = len;
1481         }
1482
1483         if (out)
1484             mwait (out->i_dts + i_caching);
1485         vlc_cleanup_pop ();
1486         if (out == NULL)
1487             continue;
1488
1489         ssize_t len = out->i_buffer;
1490         int canc = vlc_savecancel ();
1491
1492         vlc_mutex_lock( &id->lock_sink );
1493         unsigned deadc = 0; /* How many dead sockets? */
1494         int deadv[id->sinkc]; /* Dead sockets list */
1495
1496         for( int i = 0; i < id->sinkc; i++ )
1497         {
1498             if( !id->srtp ) /* FIXME: SRTCP support */
1499                 SendRTCP( id->sinkv[i].rtcp, out );
1500
1501             if( send( id->sinkv[i].rtp_fd, out->p_buffer, len, 0 ) >= 0 )
1502                 continue;
1503             /* Retry sending to root out soft-errors */
1504             if( send( id->sinkv[i].rtp_fd, out->p_buffer, len, 0 ) >= 0 )
1505                 continue;
1506
1507             deadv[deadc++] = id->sinkv[i].rtp_fd;
1508         }
1509         vlc_mutex_unlock( &id->lock_sink );
1510         block_Release( out );
1511
1512         for( unsigned i = 0; i < deadc; i++ )
1513         {
1514             msg_Dbg( id, "removing socket %d", deadv[i] );
1515             rtp_del_sink( id, deadv[i] );
1516         }
1517
1518         /* Hopefully we won't overflow the SO_MAXCONN accept queue */
1519         while( id->listen_fd != NULL )
1520         {
1521             int fd = net_Accept( id, id->listen_fd, 0 );
1522             if( fd == -1 )
1523                 break;
1524             msg_Dbg( id, "adding socket %d", fd );
1525             rtp_add_sink( id, fd, true );
1526         }
1527         vlc_restorecancel (canc);
1528     }
1529     return NULL;
1530 }
1531
1532 int rtp_add_sink( sout_stream_id_t *id, int fd, bool rtcp_mux )
1533 {
1534     rtp_sink_t sink = { fd, NULL };
1535     sink.rtcp = OpenRTCP( VLC_OBJECT( id->p_stream ), fd, IPPROTO_UDP,
1536                           rtcp_mux );
1537     if( sink.rtcp == NULL )
1538         msg_Err( id, "RTCP failed!" );
1539
1540     vlc_mutex_lock( &id->lock_sink );
1541     INSERT_ELEM( id->sinkv, id->sinkc, id->sinkc, sink );
1542     vlc_mutex_unlock( &id->lock_sink );
1543     return VLC_SUCCESS;
1544 }
1545
1546 void rtp_del_sink( sout_stream_id_t *id, int fd )
1547 {
1548     rtp_sink_t sink = { fd, NULL };
1549
1550     /* NOTE: must be safe to use if fd is not included */
1551     vlc_mutex_lock( &id->lock_sink );
1552     for( int i = 0; i < id->sinkc; i++ )
1553     {
1554         if (id->sinkv[i].rtp_fd == fd)
1555         {
1556             sink = id->sinkv[i];
1557             REMOVE_ELEM( id->sinkv, id->sinkc, i );
1558             break;
1559         }
1560     }
1561     vlc_mutex_unlock( &id->lock_sink );
1562
1563     CloseRTCP( sink.rtcp );
1564     net_Close( sink.rtp_fd );
1565 }
1566
1567 uint16_t rtp_get_seq( const sout_stream_id_t *id )
1568 {
1569     /* This will return values for the next packet.
1570      * Accounting for caching would not be totally trivial. */
1571     return id->i_sequence;
1572 }
1573
1574 /* FIXME: this is pretty bad - if we remove and then insert an ES
1575  * the number will get unsynched from inside RTSP */
1576 unsigned rtp_get_num( const sout_stream_id_t *id )
1577 {
1578     sout_stream_sys_t *p_sys = id->p_stream->p_sys;
1579     int i;
1580
1581     vlc_mutex_lock( &p_sys->lock_es );
1582     for( i = 0; i < p_sys->i_es; i++ )
1583     {
1584         if( id == p_sys->es[i] )
1585             break;
1586     }
1587     vlc_mutex_unlock( &p_sys->lock_es );
1588
1589     return i;
1590 }
1591
1592
1593 void rtp_packetize_common( sout_stream_id_t *id, block_t *out,
1594                            int b_marker, int64_t i_pts )
1595 {
1596     uint32_t i_timestamp = i_pts * (int64_t)id->i_clock_rate / INT64_C(1000000);
1597
1598     out->p_buffer[0] = 0x80;
1599     out->p_buffer[1] = (b_marker?0x80:0x00)|id->i_payload_type;
1600     out->p_buffer[2] = ( id->i_sequence >> 8)&0xff;
1601     out->p_buffer[3] = ( id->i_sequence     )&0xff;
1602     out->p_buffer[4] = ( i_timestamp >> 24 )&0xff;
1603     out->p_buffer[5] = ( i_timestamp >> 16 )&0xff;
1604     out->p_buffer[6] = ( i_timestamp >>  8 )&0xff;
1605     out->p_buffer[7] = ( i_timestamp       )&0xff;
1606
1607     memcpy( out->p_buffer + 8, id->ssrc, 4 );
1608
1609     out->i_buffer = 12;
1610     id->i_sequence++;
1611 }
1612
1613 void rtp_packetize_send( sout_stream_id_t *id, block_t *out )
1614 {
1615     block_FifoPut( id->p_fifo, out );
1616 }
1617
1618 /**
1619  * @return configured max RTP payload size (including payload type-specific
1620  * headers, excluding RTP and transport headers)
1621  */
1622 size_t rtp_mtu (const sout_stream_id_t *id)
1623 {
1624     return id->i_mtu - 12;
1625 }
1626
1627 /*****************************************************************************
1628  * Non-RTP mux
1629  *****************************************************************************/
1630
1631 /** Add an ES to a non-RTP muxed stream */
1632 static sout_stream_id_t *MuxAdd( sout_stream_t *p_stream, es_format_t *p_fmt )
1633 {
1634     sout_input_t      *p_input;
1635     sout_mux_t *p_mux = p_stream->p_sys->p_mux;
1636     assert( p_mux != NULL );
1637
1638     p_input = sout_MuxAddStream( p_mux, p_fmt );
1639     if( p_input == NULL )
1640     {
1641         msg_Err( p_stream, "cannot add this stream to the muxer" );
1642         return NULL;
1643     }
1644
1645     return (sout_stream_id_t *)p_input;
1646 }
1647
1648
1649 static int MuxSend( sout_stream_t *p_stream, sout_stream_id_t *id,
1650                     block_t *p_buffer )
1651 {
1652     sout_mux_t *p_mux = p_stream->p_sys->p_mux;
1653     assert( p_mux != NULL );
1654
1655     sout_MuxSendBuffer( p_mux, (sout_input_t *)id, p_buffer );
1656     return VLC_SUCCESS;
1657 }
1658
1659
1660 /** Remove an ES from a non-RTP muxed stream */
1661 static int MuxDel( sout_stream_t *p_stream, sout_stream_id_t *id )
1662 {
1663     sout_mux_t *p_mux = p_stream->p_sys->p_mux;
1664     assert( p_mux != NULL );
1665
1666     sout_MuxDeleteStream( p_mux, (sout_input_t *)id );
1667     return VLC_SUCCESS;
1668 }
1669
1670
1671 static ssize_t AccessOutGrabberWriteBuffer( sout_stream_t *p_stream,
1672                                             const block_t *p_buffer )
1673 {
1674     sout_stream_sys_t *p_sys = p_stream->p_sys;
1675     sout_stream_id_t *id = p_sys->es[0];
1676
1677     int64_t  i_dts = p_buffer->i_dts;
1678
1679     uint8_t         *p_data = p_buffer->p_buffer;
1680     size_t          i_data  = p_buffer->i_buffer;
1681     size_t          i_max   = id->i_mtu - 12;
1682
1683     size_t i_packet = ( p_buffer->i_buffer + i_max - 1 ) / i_max;
1684
1685     while( i_data > 0 )
1686     {
1687         size_t i_size;
1688
1689         /* output complete packet */
1690         if( p_sys->packet &&
1691             p_sys->packet->i_buffer + i_data > i_max )
1692         {
1693             rtp_packetize_send( id, p_sys->packet );
1694             p_sys->packet = NULL;
1695         }
1696
1697         if( p_sys->packet == NULL )
1698         {
1699             /* allocate a new packet */
1700             p_sys->packet = block_New( p_stream, id->i_mtu );
1701             rtp_packetize_common( id, p_sys->packet, 1, i_dts );
1702             p_sys->packet->i_dts = i_dts;
1703             p_sys->packet->i_length = p_buffer->i_length / i_packet;
1704             i_dts += p_sys->packet->i_length;
1705         }
1706
1707         i_size = __MIN( i_data,
1708                         (unsigned)(id->i_mtu - p_sys->packet->i_buffer) );
1709
1710         memcpy( &p_sys->packet->p_buffer[p_sys->packet->i_buffer],
1711                 p_data, i_size );
1712
1713         p_sys->packet->i_buffer += i_size;
1714         p_data += i_size;
1715         i_data -= i_size;
1716     }
1717
1718     return VLC_SUCCESS;
1719 }
1720
1721
1722 static ssize_t AccessOutGrabberWrite( sout_access_out_t *p_access,
1723                                       block_t *p_buffer )
1724 {
1725     sout_stream_t *p_stream = (sout_stream_t*)p_access->p_sys;
1726
1727     while( p_buffer )
1728     {
1729         block_t *p_next;
1730
1731         AccessOutGrabberWriteBuffer( p_stream, p_buffer );
1732
1733         p_next = p_buffer->p_next;
1734         block_Release( p_buffer );
1735         p_buffer = p_next;
1736     }
1737
1738     return VLC_SUCCESS;
1739 }
1740
1741
1742 static sout_access_out_t *GrabberCreate( sout_stream_t *p_stream )
1743 {
1744     sout_access_out_t *p_grab;
1745
1746     p_grab = vlc_object_create( p_stream->p_sout, sizeof( *p_grab ) );
1747     if( p_grab == NULL )
1748         return NULL;
1749
1750     p_grab->p_module    = NULL;
1751     p_grab->psz_access  = strdup( "grab" );
1752     p_grab->p_cfg       = NULL;
1753     p_grab->psz_path    = strdup( "" );
1754     p_grab->p_sys       = (sout_access_out_sys_t *)p_stream;
1755     p_grab->pf_seek     = NULL;
1756     p_grab->pf_write    = AccessOutGrabberWrite;
1757     vlc_object_attach( p_grab, p_stream );
1758     return p_grab;
1759 }