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