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