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