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