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