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