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