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