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