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