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