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