]> git.sesse.net Git - vlc/blob - modules/stream_out/rtp.c
Rework SDP API a little
[vlc] / modules / stream_out / rtp.c
1 /*****************************************************************************
2  * rtp.c: rtp stream output module
3  *****************************************************************************
4  * Copyright (C) 2003-2004 the VideoLAN team
5  * Copyright © 2007 Rémi Denis-Courmont
6  * $Id$
7  *
8  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 #include <vlc/vlc.h>
30 #include <vlc_sout.h>
31 #include <vlc_block.h>
32
33 #include <vlc_httpd.h>
34 #include <vlc_url.h>
35 #include <vlc_network.h>
36 #include <vlc_charset.h>
37 #include <vlc_strings.h>
38
39 #include "rtp.h"
40
41 #ifdef HAVE_UNISTD_H
42 #   include <sys/types.h>
43 #   include <unistd.h>
44 #   include <fcntl.h>
45 #   include <sys/stat.h>
46 #endif
47
48 #include <errno.h>
49
50 /*****************************************************************************
51  * Module descriptor
52  *****************************************************************************/
53
54 #define DST_TEXT N_("Destination")
55 #define DST_LONGTEXT N_( \
56     "This is the output URL that will be used." )
57 #define SDP_TEXT N_("SDP")
58 #define SDP_LONGTEXT N_( \
59     "This allows you to specify how the SDP (Session Descriptor) for this RTP "\
60     "session will be made available. You must use an url: http://location to " \
61     "access the SDP via HTTP, rtsp://location for RTSP access, and sap:// " \
62     "for the SDP to be announced via SAP." )
63 #define MUX_TEXT N_("Muxer")
64 #define MUX_LONGTEXT N_( \
65     "This allows you to specify the muxer used for the streaming output. " \
66     "Default is to use no muxer (standard RTP stream)." )
67
68 #define NAME_TEXT N_("Session name")
69 #define NAME_LONGTEXT N_( \
70     "This is the name of the session that will be announced in the SDP " \
71     "(Session Descriptor)." )
72 #define DESC_TEXT N_("Session descriptipn")
73 #define DESC_LONGTEXT N_( \
74     "This allows you to give a short description with details about the stream, " \
75     "that will be announced in the SDP (Session Descriptor)." )
76 #define URL_TEXT N_("Session URL")
77 #define URL_LONGTEXT N_( \
78     "This allows you to give an URL with more details about the stream " \
79     "(often the website of the streaming organization), that will " \
80     "be announced in the SDP (Session Descriptor)." )
81 #define EMAIL_TEXT N_("Session email")
82 #define EMAIL_LONGTEXT N_( \
83     "This allows you to give a contact mail address for the stream, that will " \
84     "be announced in the SDP (Session Descriptor)." )
85 #define PHONE_TEXT N_("Session phone number")
86 #define PHONE_LONGTEXT N_( \
87     "This allows you to give a contact telephone number for the stream, that will " \
88     "be announced in the SDP (Session Descriptor)." )
89
90 #define PORT_TEXT N_("Port")
91 #define PORT_LONGTEXT N_( \
92     "This allows you to specify the base port for the RTP streaming." )
93 #define PORT_AUDIO_TEXT N_("Audio port")
94 #define PORT_AUDIO_LONGTEXT N_( \
95     "This allows you to specify the default audio port for the RTP streaming." )
96 #define PORT_VIDEO_TEXT N_("Video port")
97 #define PORT_VIDEO_LONGTEXT N_( \
98     "This allows you to specify the default video port for the RTP streaming." )
99
100 #define TTL_TEXT N_("Hop limit (TTL)")
101 #define TTL_LONGTEXT N_( \
102     "This is the hop limit (also known as \"Time-To-Live\" or TTL) of " \
103     "the multicast packets sent by the stream output (0 = use operating " \
104     "system built-in default).")
105
106 #define DCCP_TEXT N_("DCCP transport")
107 #define DCCP_LONGTEXT N_( \
108     "This enables DCCP instead of UDP as a transport for RTP." )
109 #define TCP_TEXT N_("TCP transport")
110 #define TCP_LONGTEXT N_( \
111     "This enables TCP instead of UDP as a transport for RTP." )
112 #define UDP_LITE_TEXT N_("UDP-Lite transport")
113 #define UDP_LITE_LONGTEXT N_( \
114     "This enables UDP-Lite instead of UDP as a transport for RTP." )
115
116 #define RFC3016_TEXT N_("MP4A LATM")
117 #define RFC3016_LONGTEXT N_( \
118     "This allows you to stream MPEG4 LATM audio streams (see RFC3016)." )
119
120 static int  Open ( vlc_object_t * );
121 static void Close( vlc_object_t * );
122
123 #define SOUT_CFG_PREFIX "sout-rtp-"
124 #define MAX_EMPTY_BLOCKS 200
125
126 vlc_module_begin();
127     set_shortname( _("RTP"));
128     set_description( _("RTP stream output") );
129     set_capability( "sout stream", 0 );
130     add_shortcut( "rtp" );
131     set_category( CAT_SOUT );
132     set_subcategory( SUBCAT_SOUT_STREAM );
133
134     add_string( SOUT_CFG_PREFIX "dst", "", NULL, DST_TEXT,
135                 DST_LONGTEXT, VLC_TRUE );
136     add_string( SOUT_CFG_PREFIX "sdp", "", NULL, SDP_TEXT,
137                 SDP_LONGTEXT, VLC_TRUE );
138     add_string( SOUT_CFG_PREFIX "mux", "", NULL, MUX_TEXT,
139                 MUX_LONGTEXT, VLC_TRUE );
140
141     add_string( SOUT_CFG_PREFIX "name", "", NULL, NAME_TEXT,
142                 NAME_LONGTEXT, VLC_TRUE );
143     add_string( SOUT_CFG_PREFIX "description", "", NULL, DESC_TEXT,
144                 DESC_LONGTEXT, VLC_TRUE );
145     add_string( SOUT_CFG_PREFIX "url", "", NULL, URL_TEXT,
146                 URL_LONGTEXT, VLC_TRUE );
147     add_string( SOUT_CFG_PREFIX "email", "", NULL, EMAIL_TEXT,
148                 EMAIL_LONGTEXT, VLC_TRUE );
149     add_string( SOUT_CFG_PREFIX "phone", "", NULL, PHONE_TEXT,
150                 PHONE_LONGTEXT, VLC_TRUE );
151
152     add_integer( SOUT_CFG_PREFIX "port", 1234, NULL, PORT_TEXT,
153                  PORT_LONGTEXT, VLC_TRUE );
154     add_integer( SOUT_CFG_PREFIX "port-audio", 1230, NULL, PORT_AUDIO_TEXT,
155                  PORT_AUDIO_LONGTEXT, VLC_TRUE );
156     add_integer( SOUT_CFG_PREFIX "port-video", 1232, NULL, PORT_VIDEO_TEXT,
157                  PORT_VIDEO_LONGTEXT, VLC_TRUE );
158
159     add_integer( SOUT_CFG_PREFIX "ttl", 0, NULL, TTL_TEXT,
160                  TTL_LONGTEXT, VLC_TRUE );
161
162     add_bool( SOUT_CFG_PREFIX "dccp", 0, NULL,
163               DCCP_TEXT, DCCP_LONGTEXT, VLC_FALSE );
164     add_bool( SOUT_CFG_PREFIX "tcp", 0, NULL,
165               TCP_TEXT, TCP_LONGTEXT, VLC_FALSE );
166     add_bool( SOUT_CFG_PREFIX "udplite", 0, NULL,
167               UDP_LITE_TEXT, UDP_LITE_LONGTEXT, VLC_FALSE );
168
169     add_bool( SOUT_CFG_PREFIX "mp4a-latm", 0, NULL, RFC3016_TEXT,
170                  RFC3016_LONGTEXT, VLC_FALSE );
171
172     set_callbacks( Open, Close );
173 vlc_module_end();
174
175 /*****************************************************************************
176  * Exported prototypes
177  *****************************************************************************/
178 static const char *ppsz_sout_options[] = {
179     "dst", "name", "port", "port-audio", "port-video", "*sdp", "ttl", "mux",
180     "description", "url", "email", "phone",
181     "dccp", "tcp", "udplite",
182     "mp4a-latm", NULL
183 };
184
185 static sout_stream_id_t *Add ( sout_stream_t *, es_format_t * );
186 static int               Del ( sout_stream_t *, sout_stream_id_t * );
187 static int               Send( sout_stream_t *, sout_stream_id_t *,
188                                block_t* );
189 static sout_stream_id_t *MuxAdd ( sout_stream_t *, es_format_t * );
190 static int               MuxDel ( sout_stream_t *, sout_stream_id_t * );
191 static int               MuxSend( sout_stream_t *, sout_stream_id_t *,
192                                   block_t* );
193
194 static sout_access_out_t *GrabberCreate( sout_stream_t *p_sout );
195 static void ThreadSend( vlc_object_t *p_this );
196
197 static void SDPHandleUrl( sout_stream_t *, char * );
198
199 static int SapSetup( sout_stream_t *p_stream );
200 static int FileSetup( sout_stream_t *p_stream );
201 static int HttpSetup( sout_stream_t *p_stream, vlc_url_t * );
202
203 struct sout_stream_sys_t
204 {
205     /* SDP */
206     int64_t i_sdp_id;
207     int     i_sdp_version;
208     char    *psz_sdp;
209     vlc_mutex_t  lock_sdp;
210
211     char        *psz_session_name;
212     char        *psz_session_description;
213     char        *psz_session_url;
214     char        *psz_session_email;
215
216     /* SDP to disk */
217     vlc_bool_t b_export_sdp_file;
218     char *psz_sdp_file;
219
220     /* SDP via SAP */
221     vlc_bool_t b_export_sap;
222     session_descriptor_t *p_session;
223
224     /* SDP via HTTP */
225     httpd_host_t *p_httpd_host;
226     httpd_file_t *p_httpd_file;
227
228     /* RTSP */
229     rtsp_stream_t *rtsp;
230
231     /* */
232     char     *psz_destination;
233     uint8_t   proto;
234     uint8_t   i_ttl;
235     uint16_t  i_port;
236     uint16_t  i_port_audio;
237     uint16_t  i_port_video;
238     vlc_bool_t b_latm;
239
240     /* when need to use a private one or when using muxer */
241     int i_payload_type;
242
243     /* in case we do TS/PS over rtp */
244     sout_mux_t        *p_mux;
245     sout_access_out_t *p_grab;
246     block_t           *packet;
247
248     /* */
249     vlc_mutex_t      lock_es;
250     int              i_es;
251     sout_stream_id_t **es;
252 };
253
254 typedef int (*pf_rtp_packetizer_t)( sout_stream_t *, sout_stream_id_t *,
255                                     block_t * );
256
257 typedef struct rtp_sink_t
258 {
259     int rtp_fd;
260     rtcp_sender_t *rtcp;
261 } rtp_sink_t;
262
263 struct sout_stream_id_t
264 {
265     VLC_COMMON_MEMBERS
266
267     sout_stream_t *p_stream;
268     /* rtp field */
269     uint32_t    i_timestamp_start;
270     uint16_t    i_sequence;
271     uint8_t     i_payload_type;
272     uint8_t     ssrc[4];
273
274     /* for sdp */
275     char        *psz_rtpmap;
276     char        *psz_fmtp;
277     int          i_clock_rate;
278     int          i_port;
279     int          i_cat;
280     int          i_bitrate;
281
282     /* Packetizer specific fields */
283     pf_rtp_packetizer_t pf_packetize;
284     int          i_mtu;
285
286     /* Packets sinks */
287     vlc_mutex_t       lock_sink;
288     int               sinkc;
289     rtp_sink_t       *sinkv;
290     rtsp_stream_id_t *rtsp_id;
291
292     block_fifo_t     *p_fifo;
293     int64_t           i_caching;
294 };
295
296
297 /*****************************************************************************
298  * Open:
299  *****************************************************************************/
300 static int Open( vlc_object_t *p_this )
301 {
302     sout_stream_t       *p_stream = (sout_stream_t*)p_this;
303     sout_instance_t     *p_sout = p_stream->p_sout;
304     sout_stream_sys_t   *p_sys = NULL;
305     config_chain_t      *p_cfg = NULL;
306     char                *psz;
307     vlc_bool_t          b_rtsp = VLC_FALSE;
308
309     config_ChainParse( p_stream, SOUT_CFG_PREFIX,
310                        ppsz_sout_options, p_stream->p_cfg );
311
312     p_sys = malloc( sizeof( sout_stream_sys_t ) );
313     if( p_sys == NULL )
314         return VLC_ENOMEM;
315
316     p_sys->psz_destination = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "dst" );
317     p_sys->psz_session_name = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "name" );
318     p_sys->psz_session_description = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "description" );
319     p_sys->psz_session_url = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "url" );
320     p_sys->psz_session_email = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "email" );
321
322     p_sys->i_port       = var_GetInteger( p_stream, SOUT_CFG_PREFIX "port" );
323     p_sys->i_port_audio = var_GetInteger( p_stream, SOUT_CFG_PREFIX "port-audio" );
324     p_sys->i_port_video = var_GetInteger( p_stream, SOUT_CFG_PREFIX "port-video" );
325
326     p_sys->psz_sdp_file = NULL;
327
328     if( p_sys->i_port_audio == p_sys->i_port_video )
329     {
330         msg_Err( p_stream, "audio and video port cannot be the same" );
331         p_sys->i_port_audio = 0;
332         p_sys->i_port_video = 0;
333     }
334
335     if( !p_sys->psz_session_name )
336     {
337         if( p_sys->psz_destination )
338             p_sys->psz_session_name = strdup( p_sys->psz_destination );
339         else
340            p_sys->psz_session_name = strdup( "NONE" );
341     }
342
343     for( p_cfg = p_stream->p_cfg; p_cfg != NULL; p_cfg = p_cfg->p_next )
344     {
345         if( !strcmp( p_cfg->psz_name, "sdp" )
346          && ( p_cfg->psz_value != NULL )
347          && !strncasecmp( p_cfg->psz_value, "rtsp:", 5 ) )
348         {
349             b_rtsp = VLC_TRUE;
350             break;
351         }
352     }
353     if( !b_rtsp )
354     {
355         psz = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "sdp" );
356         if( psz != NULL )
357         {
358             if( !strncasecmp( psz, "rtsp:", 5 ) )
359                 b_rtsp = VLC_TRUE;
360             free( psz );
361         }
362     }
363
364     /* Transport protocol */
365     p_sys->proto = IPPROTO_UDP;
366
367 #if 0
368     if( var_GetBool( p_stream, SOUT_CFG_PREFIX "dccp" ) )
369     {
370         p_sys->sotype = SOCK_DCCP;
371         p_sys->proto = 33 /*IPPROTO_DCCP*/;
372     }
373     else
374     if( var_GetBool( p_stream, SOUT_CFG_PREFIX "tcp" ) )
375     {
376         p_sys->sotype = SOCK_STREAM;
377         p_sys->proto = IPPROTO_TCP;
378     }
379     else
380 #endif
381     if( var_GetBool( p_stream, SOUT_CFG_PREFIX "udplite" ) )
382         p_sys->proto = 136 /*IPPROTO_UDPLITE*/;
383
384     if( ( p_sys->psz_destination == NULL ) && !b_rtsp )
385     {
386         msg_Err( p_stream, "missing destination and not in RTSP mode" );
387         free( p_sys );
388         return VLC_EGENERIC;
389     }
390
391     p_sys->i_ttl = var_GetInteger( p_stream, SOUT_CFG_PREFIX "ttl" );
392     if( p_sys->i_ttl == 0 )
393     {
394         /* Normally, we should let the default hop limit up to the core,
395          * but we have to know it to build our SDP properly, which is why
396          * we ask the core. FIXME: broken when neither sout-rtp-ttl nor
397          * ttl are set. */
398         p_sys->i_ttl = config_GetInt( p_stream, "ttl" );
399     }
400
401     p_sys->b_latm = var_GetBool( p_stream, SOUT_CFG_PREFIX "mp4a-latm" );
402
403     p_sys->i_payload_type = 96;
404     p_sys->i_es = 0;
405     p_sys->es   = NULL;
406     p_sys->rtsp = NULL;
407     p_sys->psz_sdp = NULL;
408
409     p_sys->i_sdp_id = mdate();
410     p_sys->i_sdp_version = 1;
411     p_sys->psz_sdp = NULL;
412
413     p_sys->b_export_sap = VLC_FALSE;
414     p_sys->b_export_sdp_file = VLC_FALSE;
415     p_sys->p_session = NULL;
416
417     p_sys->p_httpd_host = NULL;
418     p_sys->p_httpd_file = NULL;
419
420     p_stream->p_sys     = p_sys;
421
422     vlc_mutex_init( p_stream, &p_sys->lock_sdp );
423     vlc_mutex_init( p_stream, &p_sys->lock_es );
424
425     psz = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "mux" );
426     if( psz != NULL )
427     {
428         sout_stream_id_t *id;
429
430         /* Check muxer type */
431         if( strncasecmp( psz, "ps", 2 )
432          && strncasecmp( psz, "mpeg1", 5 )
433          && strncasecmp( psz, "ts", 2 ) )
434         {
435             msg_Err( p_stream, "unsupported muxer type for RTP (only TS/PS)" );
436             free( psz );
437             vlc_mutex_destroy( &p_sys->lock_sdp );
438             vlc_mutex_destroy( &p_sys->lock_es );
439             free( p_sys );
440             return VLC_EGENERIC;
441         }
442
443         p_sys->p_grab = GrabberCreate( p_stream );
444         p_sys->p_mux = sout_MuxNew( p_sout, psz, p_sys->p_grab );
445         free( psz );
446
447         if( p_sys->p_mux == NULL )
448         {
449             msg_Err( p_stream, "cannot create muxer" );
450             sout_AccessOutDelete( p_sys->p_grab );
451             vlc_mutex_destroy( &p_sys->lock_sdp );
452             vlc_mutex_destroy( &p_sys->lock_es );
453             free( p_sys );
454             return VLC_EGENERIC;
455         }
456
457         id = Add( p_stream, NULL );
458         if( id == NULL )
459         {
460             sout_MuxDelete( p_sys->p_mux );
461             sout_AccessOutDelete( p_sys->p_grab );
462             vlc_mutex_destroy( &p_sys->lock_sdp );
463             vlc_mutex_destroy( &p_sys->lock_es );
464             free( p_sys );
465             return VLC_EGENERIC;
466         }
467
468         p_sys->packet = NULL;
469
470         p_stream->pf_add  = MuxAdd;
471         p_stream->pf_del  = MuxDel;
472         p_stream->pf_send = MuxSend;
473     }
474     else
475     {
476         p_sys->p_mux    = NULL;
477         p_sys->p_grab   = NULL;
478
479         p_stream->pf_add    = Add;
480         p_stream->pf_del    = Del;
481         p_stream->pf_send   = Send;
482     }
483
484     psz = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "sdp" );
485     if( psz != NULL )
486     {
487         config_chain_t *p_cfg;
488
489         SDPHandleUrl( p_stream, psz );
490
491         for( p_cfg = p_stream->p_cfg; p_cfg != NULL; p_cfg = p_cfg->p_next )
492         {
493             if( !strcmp( p_cfg->psz_name, "sdp" ) )
494             {
495                 if( p_cfg->psz_value == NULL || *p_cfg->psz_value == '\0' )
496                     continue;
497
498                 /* needed both :sout-rtp-sdp= and rtp{sdp=} can be used */
499                 if( !strcmp( p_cfg->psz_value, psz ) )
500                     continue;
501
502                 SDPHandleUrl( p_stream, p_cfg->psz_value );
503             }
504         }
505         free( psz );
506     }
507
508     /* update p_sout->i_out_pace_nocontrol */
509     p_stream->p_sout->i_out_pace_nocontrol++;
510
511     return VLC_SUCCESS;
512 }
513
514 /*****************************************************************************
515  * Close:
516  *****************************************************************************/
517 static void Close( vlc_object_t * p_this )
518 {
519     sout_stream_t     *p_stream = (sout_stream_t*)p_this;
520     sout_stream_sys_t *p_sys = p_stream->p_sys;
521
522     /* update p_sout->i_out_pace_nocontrol */
523     p_stream->p_sout->i_out_pace_nocontrol--;
524
525     if( p_sys->p_mux )
526     {
527         assert( p_sys->i_es == 1 );
528         Del( p_stream, p_sys->es[0] );
529
530         sout_MuxDelete( p_sys->p_mux );
531         sout_AccessOutDelete( p_sys->p_grab );
532         if( p_sys->packet )
533         {
534             block_Release( p_sys->packet );
535         }
536         if( p_sys->b_export_sap )
537         {
538             p_sys->p_mux = NULL;
539             SapSetup( p_stream );
540         }
541     }
542
543     if( p_sys->rtsp != NULL )
544         RtspUnsetup( p_sys->rtsp );
545
546     vlc_mutex_destroy( &p_sys->lock_sdp );
547     vlc_mutex_destroy( &p_sys->lock_es );
548
549     if( p_sys->p_httpd_file )
550         httpd_FileDelete( p_sys->p_httpd_file );
551
552     if( p_sys->p_httpd_host )
553         httpd_HostDelete( p_sys->p_httpd_host );
554
555     free( p_sys->psz_session_name );
556     free( p_sys->psz_session_description );
557     free( p_sys->psz_session_url );
558     free( p_sys->psz_session_email );
559     free( p_sys->psz_sdp );
560
561     if( p_sys->b_export_sdp_file )
562     {
563 #ifdef HAVE_UNISTD_H
564         unlink( p_sys->psz_sdp_file );
565 #endif
566         free( p_sys->psz_sdp_file );
567     }
568     free( p_sys->psz_destination );
569     free( p_sys );
570 }
571
572 /*****************************************************************************
573  * SDPHandleUrl:
574  *****************************************************************************/
575 static void SDPHandleUrl( sout_stream_t *p_stream, char *psz_url )
576 {
577     sout_stream_sys_t *p_sys = p_stream->p_sys;
578     vlc_url_t url;
579
580     vlc_UrlParse( &url, psz_url, 0 );
581     if( url.psz_protocol && !strcasecmp( url.psz_protocol, "http" ) )
582     {
583         if( p_sys->p_httpd_file )
584         {
585             msg_Err( p_stream, "you can use sdp=http:// only once" );
586             goto out;
587         }
588
589         if( HttpSetup( p_stream, &url ) )
590         {
591             msg_Err( p_stream, "cannot export SDP as HTTP" );
592         }
593     }
594     else if( url.psz_protocol && !strcasecmp( url.psz_protocol, "rtsp" ) )
595     {
596         if( p_sys->rtsp != NULL )
597         {
598             msg_Err( p_stream, "you can use sdp=rtsp:// only once" );
599             goto out;
600         }
601
602         /* FIXME test if destination is multicast or no destination at all */
603         p_sys->rtsp = RtspSetup( p_stream, &url );
604         if( p_sys->rtsp == NULL )
605         {
606             msg_Err( p_stream, "cannot export SDP as RTSP" );
607         }
608
609         if( p_sys->p_mux != NULL )
610         {
611             sout_stream_id_t *id = p_sys->es[0];
612             id->rtsp_id = RtspAddId( p_sys->rtsp, id, 0,
613                                      p_sys->psz_destination, p_sys->i_ttl,
614                                      id->i_port, id->i_port + 1 );
615         }
616     }
617     else if( ( url.psz_protocol && !strcasecmp( url.psz_protocol, "sap" ) ) ||
618              ( url.psz_host && !strcasecmp( url.psz_host, "sap" ) ) )
619     {
620         p_sys->b_export_sap = VLC_TRUE;
621         SapSetup( p_stream );
622     }
623     else if( url.psz_protocol && !strcasecmp( url.psz_protocol, "file" ) )
624     {
625         if( p_sys->b_export_sdp_file )
626         {
627             msg_Err( p_stream, "you can use sdp=file:// only once" );
628             goto out;
629         }
630         p_sys->b_export_sdp_file = VLC_TRUE;
631         psz_url = &psz_url[5];
632         if( psz_url[0] == '/' && psz_url[1] == '/' )
633             psz_url += 2;
634         p_sys->psz_sdp_file = strdup( psz_url );
635     }
636     else
637     {
638         msg_Warn( p_stream, "unknown protocol for SDP (%s)",
639                   url.psz_protocol );
640     }
641
642 out:
643     vlc_UrlClean( &url );
644 }
645
646 /*****************************************************************************
647  * SDPGenerate
648  *****************************************************************************/
649 /*static*/
650 char *SDPGenerate( const sout_stream_t *p_stream, const char *rtsp_url )
651 {
652     const sout_stream_sys_t *p_sys = p_stream->p_sys;
653     char *psz_sdp;
654     struct sockaddr_storage dst;
655     socklen_t dstlen;
656     int i;
657     /*
658      * When we have a fixed destination (typically when we do multicast),
659      * we need to put the actual port numbers in the SDP.
660      * When there is no fixed destination, we only support RTSP unicast
661      * on-demand setup, so we should rather let the clients decide which ports
662      * to use.
663      * When there is both a fixed destination and RTSP unicast, we need to
664      * put port numbers used by the fixed destination, otherwise the SDP would
665      * become totally incorrect for multicast use. It should be noted that
666      * port numbers from SDP with RTSP are only "recommendation" from the
667      * server to the clients (per RFC2326), so only broken clients will fail
668      * to handle this properly. There is no solution but to use two differents
669      * output chain with two different RTSP URLs if you need to handle this
670      * scenario.
671      */
672     int inclport;
673
674     if( p_sys->psz_destination != NULL )
675     {
676         inclport = 1;
677
678         /* Oh boy, this is really ugly! (+ race condition on lock_es) */
679         dstlen = sizeof( dst );
680         getpeername( p_sys->es[0]->sinkv[0].rtp_fd, (struct sockaddr *)&dst,
681                      &dstlen );
682     }
683     else
684     {
685         inclport = 0;
686
687         /* Dummy destination address for RTSP */
688         memset (&dst, 0, sizeof( struct sockaddr_in ) );
689         dst.ss_family = AF_INET;
690 #ifdef HAVE_SA_LEN
691         dst.ss_len =
692 #endif
693         dstlen = sizeof( struct sockaddr_in );
694     }
695
696     psz_sdp = vlc_sdp_Start( VLC_OBJECT( p_stream ), SOUT_CFG_PREFIX,
697                              NULL, 0, (struct sockaddr *)&dst, dstlen );
698     if( psz_sdp == NULL )
699         return NULL;
700
701     /* TODO: a=source-filter */
702
703     if( rtsp_url != NULL )
704         sdp_AddAttribute ( &psz_sdp, "control", "%s", rtsp_url );
705
706     /* FIXME: locking?! */
707     for( i = 0; i < p_sys->i_es; i++ )
708     {
709         sout_stream_id_t *id = p_sys->es[i];
710         const char *mime_major; /* major MIME type */
711
712         switch( id->i_cat )
713         {
714             case VIDEO_ES:
715                 mime_major = "video";
716                 break;
717             case AUDIO_ES:
718                 mime_major = "audio";
719                 break;
720             case SPU_ES:
721                 mime_major = "text";
722                 break;
723             default:
724                 continue;
725         }
726
727         sdp_AddMedia( &psz_sdp, mime_major, "RTP/AVP", inclport * id->i_port,
728                       id->i_payload_type, VLC_FALSE, id->i_bitrate,
729                       id->psz_rtpmap, id->psz_fmtp);
730
731         if( rtsp_url != NULL )
732             sdp_AddAttribute ( &psz_sdp, "control", "%s/trackID=%d",
733                                rtsp_url, i );
734     }
735
736     return psz_sdp;
737 }
738
739 /*****************************************************************************
740  * RTP mux
741  *****************************************************************************/
742 static int rtp_packetize_l16  ( sout_stream_t *, sout_stream_id_t *, block_t * );
743 static int rtp_packetize_l8   ( sout_stream_t *, sout_stream_id_t *, block_t * );
744 static int rtp_packetize_mpa  ( sout_stream_t *, sout_stream_id_t *, block_t * );
745 static int rtp_packetize_mpv  ( sout_stream_t *, sout_stream_id_t *, block_t * );
746 static int rtp_packetize_ac3  ( sout_stream_t *, sout_stream_id_t *, block_t * );
747 static int rtp_packetize_split( sout_stream_t *, sout_stream_id_t *, block_t * );
748 static int rtp_packetize_mp4a ( sout_stream_t *, sout_stream_id_t *, block_t * );
749 static int rtp_packetize_mp4a_latm ( sout_stream_t *, sout_stream_id_t *, block_t * );
750 static int rtp_packetize_h263 ( sout_stream_t *, sout_stream_id_t *, block_t * );
751 static int rtp_packetize_h264 ( sout_stream_t *, sout_stream_id_t *, block_t * );
752 static int rtp_packetize_amr  ( sout_stream_t *, sout_stream_id_t *, block_t * );
753 static int rtp_packetize_t140 ( sout_stream_t *, sout_stream_id_t *, block_t * );
754
755 static void sprintf_hexa( char *s, uint8_t *p_data, int i_data )
756 {
757     static const char hex[16] = "0123456789abcdef";
758     int i;
759
760     for( i = 0; i < i_data; i++ )
761     {
762         s[2*i+0] = hex[(p_data[i]>>4)&0xf];
763         s[2*i+1] = hex[(p_data[i]   )&0xf];
764     }
765     s[2*i_data] = '\0';
766 }
767
768
769 /** Add an ES as a new RTP stream */
770 static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
771 {
772     /* NOTE: As a special case, if we use a non-RTP
773      * mux (TS/PS), then p_fmt is NULL. */
774     sout_stream_sys_t *p_sys = p_stream->p_sys;
775     sout_stream_id_t  *id;
776     int               i_port, cscov = -1;
777     char              *psz_sdp;
778
779     id = vlc_object_create( p_stream, sizeof( sout_stream_id_t ) );
780     if( id == NULL )
781         return NULL;
782
783     /* Choose the port */
784     i_port = 0;
785     if( p_fmt == NULL )
786         ;
787     else
788     if( p_fmt->i_cat == AUDIO_ES && p_sys->i_port_audio > 0 )
789     {
790         i_port = p_sys->i_port_audio;
791         p_sys->i_port_audio = 0;
792     }
793     else
794     if( p_fmt->i_cat == VIDEO_ES && p_sys->i_port_video > 0 )
795     {
796         i_port = p_sys->i_port_video;
797         p_sys->i_port_video = 0;
798     }
799
800     while( i_port == 0 )
801     {
802         if( p_sys->i_port != p_sys->i_port_audio
803          && p_sys->i_port != p_sys->i_port_video )
804         {
805             i_port = p_sys->i_port;
806             p_sys->i_port += 2;
807             break;
808         }
809         p_sys->i_port += 2;
810     }
811
812     id->p_stream   = p_stream;
813
814     id->i_timestamp_start = rand()&0xffffffff;
815     id->i_sequence = rand()&0xffff;
816     id->i_payload_type = p_sys->i_payload_type;
817     id->ssrc[0] = rand()&0xff;
818     id->ssrc[1] = rand()&0xff;
819     id->ssrc[2] = rand()&0xff;
820     id->ssrc[3] = rand()&0xff;
821
822     id->psz_rtpmap = NULL;
823     id->psz_fmtp   = NULL;
824     id->i_clock_rate = 90000; /* most common case */
825     id->i_port     = i_port;
826     if( p_fmt != NULL )
827     {
828         id->i_cat  = p_fmt->i_cat;
829         id->i_bitrate = p_fmt->i_bitrate/1000; /* Stream bitrate in kbps */
830     }
831     else
832     {
833         id->i_cat  = VIDEO_ES;
834         id->i_bitrate = 0;
835     }
836
837     id->pf_packetize = NULL;
838     id->i_mtu = config_GetInt( p_stream, "mtu" );
839     if( id->i_mtu <= 12 + 16 )
840         id->i_mtu = 576 - 20 - 8; /* pessimistic */
841
842     msg_Dbg( p_stream, "maximum RTP packet size: %d bytes", id->i_mtu );
843
844     vlc_mutex_init( p_stream, &id->lock_sink );
845     id->sinkc = 0;
846     id->sinkv = NULL;
847     id->rtsp_id = NULL;
848
849     id->i_caching =
850         (int64_t)1000 * var_GetInteger( p_stream, SOUT_CFG_PREFIX "caching");
851     id->p_fifo = block_FifoNew( p_stream );
852
853     if( vlc_thread_create( id, "RTP send thread", ThreadSend,
854                            VLC_THREAD_PRIORITY_HIGHEST, VLC_FALSE ) )
855     {
856         vlc_mutex_destroy( &id->lock_sink );
857         vlc_object_destroy( id );
858         return NULL;
859     }
860
861     if( p_sys->psz_destination != NULL )
862     {
863         int ttl = (p_sys->i_ttl > 0) ? p_sys->i_ttl : -1;
864         int fd = net_ConnectDgram( p_stream, p_sys->psz_destination,
865                                    i_port, ttl, p_sys->proto );
866
867         if( fd == -1 )
868         {
869             msg_Err( p_stream, "cannot create RTP socket" );
870             vlc_thread_join( id );
871             vlc_mutex_destroy( &id->lock_sink );
872             vlc_object_destroy( id );
873             return NULL;
874         }
875         rtp_add_sink( id, fd );
876     }
877
878     if( p_fmt == NULL )
879     {
880         char *psz = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "mux" );
881
882         if( psz == NULL ) /* Uho! */
883             ;
884         else
885         if( strncmp( psz, "ts", 2 ) == 0 )
886         {
887             id->i_payload_type = 33;
888             id->psz_rtpmap = strdup( "MP2T/90000" );
889         }
890         else
891         {
892             id->psz_rtpmap = strdup( "MP2P/90000" );
893         }
894     }
895     else
896     switch( p_fmt->i_codec )
897     {
898         case VLC_FOURCC( 's', '1', '6', 'b' ):
899             if( p_fmt->audio.i_channels == 1 && p_fmt->audio.i_rate == 44100 )
900             {
901                 id->i_payload_type = 11;
902             }
903             else if( p_fmt->audio.i_channels == 2 &&
904                      p_fmt->audio.i_rate == 44100 )
905             {
906                 id->i_payload_type = 10;
907             }
908             if( asprintf( &id->psz_rtpmap, "L16/%d/%d", p_fmt->audio.i_rate,
909                           p_fmt->audio.i_channels ) == -1 )
910                 id->psz_rtpmap = NULL;
911             id->i_clock_rate = p_fmt->audio.i_rate;
912             id->pf_packetize = rtp_packetize_l16;
913             break;
914         case VLC_FOURCC( 'u', '8', ' ', ' ' ):
915             if( asprintf( &id->psz_rtpmap, "L8/%d/%d", p_fmt->audio.i_rate,
916                           p_fmt->audio.i_channels ) == -1 )
917                 id->psz_rtpmap = NULL;
918             id->i_clock_rate = p_fmt->audio.i_rate;
919             id->pf_packetize = rtp_packetize_l8;
920             break;
921         case VLC_FOURCC( 'm', 'p', 'g', 'a' ):
922             id->i_payload_type = 14;
923             id->psz_rtpmap = strdup( "MPA/90000" );
924             id->pf_packetize = rtp_packetize_mpa;
925             break;
926         case VLC_FOURCC( 'm', 'p', 'g', 'v' ):
927             id->i_payload_type = 32;
928             id->psz_rtpmap = strdup( "MPV/90000" );
929             id->pf_packetize = rtp_packetize_mpv;
930             break;
931         case VLC_FOURCC( 'a', '5', '2', ' ' ):
932             id->psz_rtpmap = strdup( "ac3/90000" );
933             id->pf_packetize = rtp_packetize_ac3;
934             break;
935         case VLC_FOURCC( 'H', '2', '6', '3' ):
936             id->psz_rtpmap = strdup( "H263-1998/90000" );
937             id->pf_packetize = rtp_packetize_h263;
938             break;
939         case VLC_FOURCC( 'h', '2', '6', '4' ):
940             id->psz_rtpmap = strdup( "H264/90000" );
941             id->pf_packetize = rtp_packetize_h264;
942             id->psz_fmtp = NULL;
943
944             if( p_fmt->i_extra > 0 )
945             {
946                 uint8_t *p_buffer = p_fmt->p_extra;
947                 int     i_buffer = p_fmt->i_extra;
948                 char    *p_64_sps = NULL;
949                 char    *p_64_pps = NULL;
950                 char    hexa[6+1];
951
952                 while( i_buffer > 4 &&
953                        p_buffer[0] == 0 && p_buffer[1] == 0 &&
954                        p_buffer[2] == 0 && p_buffer[3] == 1 )
955                 {
956                     const int i_nal_type = p_buffer[4]&0x1f;
957                     int i_offset;
958                     int i_size      = 0;
959
960                     msg_Dbg( p_stream, "we found a startcode for NAL with TYPE:%d", i_nal_type );
961
962                     i_size = i_buffer;
963                     for( i_offset = 4; i_offset+3 < i_buffer ; i_offset++)
964                     {
965                         if( !memcmp (p_buffer + i_offset, "\x00\x00\x00\x01", 4 ) )
966                         {
967                             /* we found another startcode */
968                             i_size = i_offset;
969                             break;
970                         }
971                     }
972                     if( i_nal_type == 7 )
973                     {
974                         p_64_sps = vlc_b64_encode_binary( &p_buffer[4], i_size - 4 );
975                         sprintf_hexa( hexa, &p_buffer[5], 3 );
976                     }
977                     else if( i_nal_type == 8 )
978                     {
979                         p_64_pps = vlc_b64_encode_binary( &p_buffer[4], i_size - 4 );
980                     }
981                     i_buffer -= i_size;
982                     p_buffer += i_size;
983                 }
984                 /* */
985                 if( p_64_sps && p_64_pps &&
986                     ( asprintf( &id->psz_fmtp,
987                                 "packetization-mode=1;profile-level-id=%s;"
988                                 "sprop-parameter-sets=%s,%s;", hexa, p_64_sps,
989                                 p_64_pps ) == -1 ) )
990                     id->psz_fmtp = NULL;
991                 free( p_64_sps );
992                 free( p_64_pps );
993             }
994             if( !id->psz_fmtp )
995                 id->psz_fmtp = strdup( "packetization-mode=1" );
996             break;
997
998         case VLC_FOURCC( 'm', 'p', '4', 'v' ):
999         {
1000             char hexa[2*p_fmt->i_extra +1];
1001
1002             id->psz_rtpmap = strdup( "MP4V-ES/90000" );
1003             id->pf_packetize = rtp_packetize_split;
1004             if( p_fmt->i_extra > 0 )
1005             {
1006                 sprintf_hexa( hexa, p_fmt->p_extra, p_fmt->i_extra );
1007                 if( asprintf( &id->psz_fmtp,
1008                               "profile-level-id=3; config=%s;", hexa ) == -1 )
1009                     id->psz_fmtp = NULL;
1010             }
1011             break;
1012         }
1013         case VLC_FOURCC( 'm', 'p', '4', 'a' ):
1014         {
1015             id->i_clock_rate = p_fmt->audio.i_rate;
1016
1017             if(!p_sys->b_latm)
1018             {
1019                 char hexa[2*p_fmt->i_extra +1];
1020
1021                 if( asprintf( &id->psz_rtpmap, "mpeg4-generic/%d",
1022                               p_fmt->audio.i_rate ) == -1 )
1023                     id->psz_rtpmap = NULL;
1024                 id->pf_packetize = rtp_packetize_mp4a;
1025                 sprintf_hexa( hexa, p_fmt->p_extra, p_fmt->i_extra );
1026                 if( asprintf( &id->psz_fmtp,
1027                               "streamtype=5; profile-level-id=15; "
1028                               "mode=AAC-hbr; config=%s; SizeLength=13; "
1029                               "IndexLength=3; IndexDeltaLength=3; Profile=1;",
1030                               hexa ) == -1 )
1031                     id->psz_fmtp = NULL;
1032             }
1033             else
1034             {
1035                 char hexa[13];
1036                 int i;
1037                 unsigned char config[6];
1038                 unsigned int aacsrates[15] = {
1039                     96000, 88200, 64000, 48000, 44100, 32000, 24000, 22050,
1040                     16000, 12000, 11025, 8000, 7350, 0, 0 };
1041
1042                 for( i = 0; i < 15; i++ )
1043                     if( p_fmt->audio.i_rate == aacsrates[i] )
1044                         break;
1045
1046                 config[0]=0x40;
1047                 config[1]=0;
1048                 config[2]=0x20|i;
1049                 config[3]=p_fmt->audio.i_channels<<4;
1050                 config[4]=0x3f;
1051                 config[5]=0xc0;
1052
1053                 if( asprintf( &id->psz_rtpmap, "MP4A-LATM/%d/%d",
1054                               p_fmt->audio.i_rate,
1055                               p_fmt->audio.i_channels ) == -1)
1056                     id->psz_rtpmap = NULL;
1057                 id->pf_packetize = rtp_packetize_mp4a_latm;
1058                 sprintf_hexa( hexa, config, 6 );
1059                 if( asprintf( &id->psz_fmtp, "profile-level-id=15; "
1060                               "object=2; cpresent=0; config=%s", hexa ) == -1 )
1061                     id->psz_fmtp = NULL;
1062             }
1063             break;
1064         }
1065         case VLC_FOURCC( 's', 'a', 'm', 'r' ):
1066             id->psz_rtpmap = strdup( p_fmt->audio.i_channels == 2 ?
1067                                      "AMR/8000/2" : "AMR/8000" );
1068             id->psz_fmtp = strdup( "octet-align=1" );
1069             id->i_clock_rate = p_fmt->audio.i_rate;
1070             id->pf_packetize = rtp_packetize_amr;
1071             break;
1072         case VLC_FOURCC( 's', 'a', 'w', 'b' ):
1073             id->psz_rtpmap = strdup( p_fmt->audio.i_channels == 2 ?
1074                                      "AMR-WB/16000/2" : "AMR-WB/16000" );
1075             id->psz_fmtp = strdup( "octet-align=1" );
1076             id->i_clock_rate = p_fmt->audio.i_rate;
1077             id->pf_packetize = rtp_packetize_amr;
1078             break;
1079         case VLC_FOURCC( 't', '1', '4', '0' ):
1080             id->psz_rtpmap = strdup( "t140/1000" );
1081             id->i_clock_rate = 1000;
1082             id->pf_packetize = rtp_packetize_t140;
1083             break;
1084
1085         default:
1086             msg_Err( p_stream, "cannot add this stream (unsupported "
1087                      "codec:%4.4s)", (char*)&p_fmt->i_codec );
1088             if( id->sinkc > 0 )
1089                 rtp_del_sink( id, id->sinkv[0].rtp_fd );
1090             vlc_thread_join( id );
1091             vlc_mutex_destroy( &id->lock_sink );
1092             vlc_object_destroy( id );
1093             return NULL;
1094     }
1095
1096     if( cscov != -1 )
1097         cscov += 8 /* UDP */ + 12 /* RTP */;
1098     if( id->sinkc > 0 )
1099         net_SetCSCov( id->sinkv[0].rtp_fd, cscov, -1 );
1100
1101     if( id->i_payload_type == p_sys->i_payload_type )
1102         p_sys->i_payload_type++;
1103
1104     if( p_sys->rtsp != NULL )
1105         id->rtsp_id = RtspAddId( p_sys->rtsp, id, p_sys->i_es,
1106                                  p_sys->psz_destination,
1107                                  p_sys->i_ttl, id->i_port, id->i_port + 1 );
1108
1109     /* Update p_sys context */
1110     vlc_mutex_lock( &p_sys->lock_es );
1111     TAB_APPEND( p_sys->i_es, p_sys->es, id );
1112     vlc_mutex_unlock( &p_sys->lock_es );
1113
1114     psz_sdp = SDPGenerate( p_stream, NULL );
1115
1116     vlc_mutex_lock( &p_sys->lock_sdp );
1117     free( p_sys->psz_sdp );
1118     p_sys->psz_sdp = psz_sdp;
1119     vlc_mutex_unlock( &p_sys->lock_sdp );
1120
1121     p_sys->i_sdp_version++;
1122
1123     msg_Dbg( p_stream, "sdp=\n%s", p_sys->psz_sdp );
1124
1125     /* Update SDP (sap/file) */
1126     if( p_sys->b_export_sap ) SapSetup( p_stream );
1127     if( p_sys->b_export_sdp_file ) FileSetup( p_stream );
1128
1129     vlc_object_attach( id, p_stream );
1130     return id;
1131 }
1132
1133 static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
1134 {
1135     sout_stream_sys_t *p_sys = p_stream->p_sys;
1136
1137     vlc_object_kill( id );
1138
1139     vlc_mutex_lock( &p_sys->lock_es );
1140     TAB_REMOVE( p_sys->i_es, p_sys->es, id );
1141     vlc_mutex_unlock( &p_sys->lock_es );
1142
1143     /* Release port */
1144     if( id->i_port > 0 )
1145     {
1146         if( id->i_cat == AUDIO_ES && p_sys->i_port_audio == 0 )
1147             p_sys->i_port_audio = id->i_port;
1148         else if( id->i_cat == VIDEO_ES && p_sys->i_port_video == 0 )
1149             p_sys->i_port_video = id->i_port;
1150     }
1151
1152     free( id->psz_rtpmap );
1153     free( id->psz_fmtp );
1154
1155     if( id->rtsp_id )
1156         RtspDelId( p_sys->rtsp, id->rtsp_id );
1157     if( id->sinkc > 0 )
1158         rtp_del_sink( id, id->sinkv[0].rtp_fd ); /* sink for explicit dst= */
1159
1160     vlc_thread_join( id );
1161     vlc_mutex_destroy( &id->lock_sink );
1162     block_FifoRelease( id->p_fifo );
1163
1164     /* Update SDP (sap/file) */
1165     if( p_sys->b_export_sap && !p_sys->p_mux ) SapSetup( p_stream );
1166     if( p_sys->b_export_sdp_file ) FileSetup( p_stream );
1167
1168     vlc_object_detach( id );
1169     vlc_object_destroy( id );
1170     return VLC_SUCCESS;
1171 }
1172
1173 static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
1174                  block_t *p_buffer )
1175 {
1176     block_t *p_next;
1177
1178     assert( p_stream->p_sys->p_mux == NULL );
1179
1180     while( p_buffer != NULL )
1181     {
1182         p_next = p_buffer->p_next;
1183         if( id->pf_packetize( p_stream, id, p_buffer ) )
1184             break;
1185
1186         block_Release( p_buffer );
1187         p_buffer = p_next;
1188     }
1189     return VLC_SUCCESS;
1190 }
1191
1192 /****************************************************************************
1193  * SAP:
1194  ****************************************************************************/
1195 static int SapSetup( sout_stream_t *p_stream )
1196 {
1197     sout_stream_sys_t *p_sys = p_stream->p_sys;
1198     sout_instance_t   *p_sout = p_stream->p_sout;
1199     announce_method_t *p_method = sout_SAPMethod();
1200
1201     /* Remove the previous session */
1202     if( p_sys->p_session != NULL)
1203     {
1204         sout_AnnounceUnRegister( p_sout, p_sys->p_session);
1205         sout_AnnounceSessionDestroy( p_sys->p_session );
1206         p_sys->p_session = NULL;
1207     }
1208
1209     if( ( p_sys->i_es > 0 || p_sys->p_mux ) && p_sys->psz_sdp && *p_sys->psz_sdp )
1210     {
1211         p_sys->p_session = sout_AnnounceRegisterSDP( p_sout, SOUT_CFG_PREFIX,
1212                                                      p_sys->psz_sdp,
1213                                                      p_sys->psz_destination,
1214                                                      p_method );
1215     }
1216
1217     sout_MethodRelease( p_method );
1218     return VLC_SUCCESS;
1219 }
1220
1221 /****************************************************************************
1222 * File:
1223 ****************************************************************************/
1224 static int FileSetup( sout_stream_t *p_stream )
1225 {
1226     sout_stream_sys_t *p_sys = p_stream->p_sys;
1227     FILE            *f;
1228
1229     if( ( f = utf8_fopen( p_sys->psz_sdp_file, "wt" ) ) == NULL )
1230     {
1231         msg_Err( p_stream, "cannot open file '%s' (%s)",
1232                  p_sys->psz_sdp_file, strerror(errno) );
1233         return VLC_EGENERIC;
1234     }
1235
1236     fputs( p_sys->psz_sdp, f );
1237     fclose( f );
1238
1239     return VLC_SUCCESS;
1240 }
1241
1242 /****************************************************************************
1243  * HTTP:
1244  ****************************************************************************/
1245 static int  HttpCallback( httpd_file_sys_t *p_args,
1246                           httpd_file_t *, uint8_t *p_request,
1247                           uint8_t **pp_data, int *pi_data );
1248
1249 static int HttpSetup( sout_stream_t *p_stream, vlc_url_t *url)
1250 {
1251     sout_stream_sys_t *p_sys = p_stream->p_sys;
1252
1253     p_sys->p_httpd_host = httpd_HostNew( VLC_OBJECT(p_stream), url->psz_host,
1254                                          url->i_port > 0 ? url->i_port : 80 );
1255     if( p_sys->p_httpd_host )
1256     {
1257         p_sys->p_httpd_file = httpd_FileNew( p_sys->p_httpd_host,
1258                                              url->psz_path ? url->psz_path : "/",
1259                                              "application/sdp",
1260                                              NULL, NULL, NULL,
1261                                              HttpCallback, (void*)p_sys );
1262     }
1263     if( p_sys->p_httpd_file == NULL )
1264     {
1265         return VLC_EGENERIC;
1266     }
1267     return VLC_SUCCESS;
1268 }
1269
1270 static int  HttpCallback( httpd_file_sys_t *p_args,
1271                           httpd_file_t *f, uint8_t *p_request,
1272                           uint8_t **pp_data, int *pi_data )
1273 {
1274     sout_stream_sys_t *p_sys = (sout_stream_sys_t*)p_args;
1275
1276     vlc_mutex_lock( &p_sys->lock_sdp );
1277     if( p_sys->psz_sdp && *p_sys->psz_sdp )
1278     {
1279         *pi_data = strlen( p_sys->psz_sdp );
1280         *pp_data = malloc( *pi_data );
1281         memcpy( *pp_data, p_sys->psz_sdp, *pi_data );
1282     }
1283     else
1284     {
1285         *pp_data = NULL;
1286         *pi_data = 0;
1287     }
1288     vlc_mutex_unlock( &p_sys->lock_sdp );
1289
1290     return VLC_SUCCESS;
1291 }
1292
1293 /****************************************************************************
1294  * RTP send
1295  ****************************************************************************/
1296 static void ThreadSend( vlc_object_t *p_this )
1297 {
1298     sout_stream_id_t *id = (sout_stream_id_t *)p_this;
1299     unsigned i_caching = id->i_caching;
1300 #ifdef HAVE_TEE
1301     int fd[5] = { -1, -1, -1, -1, -1 };
1302
1303     if( pipe( fd ) )
1304         fd[0] = fd[1] = -1;
1305     else
1306     if( pipe( fd ) )
1307         fd[2] = fd[3] = -1;
1308     else
1309         fd[4] = open( "/dev/null", O_WRONLY );
1310 #endif
1311
1312     while( !id->b_die )
1313     {
1314         block_t *out = block_FifoGet( id->p_fifo );
1315         mtime_t  i_date = out->i_dts + i_caching;
1316         ssize_t  len = out->i_buffer;
1317
1318 #ifdef HAVE_TEE
1319         if( fd[4] != -1 )
1320             len = write( fd[1], out->p_buffer, len);
1321         if( len == -1 )
1322             continue; /* Uho - should not happen */
1323 #endif
1324         mwait( i_date );
1325
1326         vlc_mutex_lock( &id->lock_sink );
1327         for( int i = 0; i < id->sinkc; i++ )
1328         {
1329             SendRTCP( id->sinkv[i].rtcp, out );
1330
1331 #ifdef HAVE_TEE
1332             tee( fd[0], fd[3], len, 0 );
1333             if( splice( fd[2], NULL, id->sinkv[i].rtp_fd, NULL, len,
1334                         SPLICE_F_NONBLOCK ) >= 0 )
1335                 continue;
1336
1337             /* splice failed */
1338             splice( fd[2], NULL, fd[4], NULL, len, 0 );
1339 #endif
1340             send( id->sinkv[i].rtp_fd, out->p_buffer, len, 0 );
1341         }
1342         vlc_mutex_unlock( &id->lock_sink );
1343
1344         block_Release( out );
1345 #ifdef HAVE_TEE
1346         splice( fd[0], NULL, fd[4], NULL, len, 0 );
1347 #endif
1348     }
1349
1350 #ifdef HAVE_TEE
1351     for( unsigned i = 0; i < 5; i++ )
1352         close( fd[i] );
1353 #endif
1354 }
1355
1356 static inline void rtp_packetize_send( sout_stream_id_t *id, block_t *out )
1357 {
1358     block_FifoPut( id->p_fifo, out );
1359 }
1360
1361 int rtp_add_sink( sout_stream_id_t *id, int fd )
1362 {
1363     rtp_sink_t sink = { fd, NULL };
1364     sink.rtcp = OpenRTCP( VLC_OBJECT( id->p_stream ), fd, IPPROTO_UDP );
1365     if( sink.rtcp == NULL )
1366         msg_Err( id, "RTCP failed!" );
1367
1368     vlc_mutex_lock( &id->lock_sink );
1369     INSERT_ELEM( id->sinkv, id->sinkc, id->sinkc, sink );
1370     vlc_mutex_unlock( &id->lock_sink );
1371     return VLC_SUCCESS;
1372 }
1373
1374 void rtp_del_sink( sout_stream_id_t *id, int fd )
1375 {
1376     rtp_sink_t sink = { fd, NULL };
1377
1378     /* NOTE: must be safe to use if fd is not included */
1379     vlc_mutex_lock( &id->lock_sink );
1380     for( int i = 0; i < id->sinkc; i++ )
1381     {
1382         if (id->sinkv[i].rtp_fd == fd)
1383         {
1384             sink = id->sinkv[i];
1385             REMOVE_ELEM( id->sinkv, id->sinkc, i );
1386             break;
1387         }
1388     }
1389     vlc_mutex_unlock( &id->lock_sink );
1390
1391     CloseRTCP( sink.rtcp );
1392     net_Close( sink.rtp_fd );
1393 }
1394
1395 /****************************************************************************
1396  * rtp_packetize_*:
1397  ****************************************************************************/
1398 static void rtp_packetize_common( sout_stream_id_t *id, block_t *out,
1399                                   int b_marker, int64_t i_pts )
1400 {
1401     uint32_t i_timestamp = i_pts * (int64_t)id->i_clock_rate / I64C(1000000);
1402
1403     out->p_buffer[0] = 0x80;
1404     out->p_buffer[1] = (b_marker?0x80:0x00)|id->i_payload_type;
1405     out->p_buffer[2] = ( id->i_sequence >> 8)&0xff;
1406     out->p_buffer[3] = ( id->i_sequence     )&0xff;
1407     out->p_buffer[4] = ( i_timestamp >> 24 )&0xff;
1408     out->p_buffer[5] = ( i_timestamp >> 16 )&0xff;
1409     out->p_buffer[6] = ( i_timestamp >>  8 )&0xff;
1410     out->p_buffer[7] = ( i_timestamp       )&0xff;
1411
1412     memcpy( out->p_buffer + 8, id->ssrc, 4 );
1413
1414     out->i_buffer = 12;
1415     id->i_sequence++;
1416 }
1417
1418 static int rtp_packetize_mpa( sout_stream_t *p_stream, sout_stream_id_t *id,
1419                               block_t *in )
1420 {
1421     int     i_max   = id->i_mtu - 12 - 4; /* payload max in one packet */
1422     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
1423
1424     uint8_t *p_data = in->p_buffer;
1425     int     i_data  = in->i_buffer;
1426     int     i;
1427
1428     for( i = 0; i < i_count; i++ )
1429     {
1430         int           i_payload = __MIN( i_max, i_data );
1431         block_t *out = block_New( p_stream, 16 + i_payload );
1432
1433         /* rtp common header */
1434         rtp_packetize_common( id, out, (i == i_count - 1)?1:0, in->i_pts );
1435         /* mbz set to 0 */
1436         out->p_buffer[12] = 0;
1437         out->p_buffer[13] = 0;
1438         /* fragment offset in the current frame */
1439         out->p_buffer[14] = ( (i*i_max) >> 8 )&0xff;
1440         out->p_buffer[15] = ( (i*i_max)      )&0xff;
1441         memcpy( &out->p_buffer[16], p_data, i_payload );
1442
1443         out->i_buffer   = 16 + i_payload;
1444         out->i_dts    = in->i_dts + i * in->i_length / i_count;
1445         out->i_length = in->i_length / i_count;
1446
1447         rtp_packetize_send( id, out );
1448
1449         p_data += i_payload;
1450         i_data -= i_payload;
1451     }
1452
1453     return VLC_SUCCESS;
1454 }
1455
1456 /* rfc2250 */
1457 static int rtp_packetize_mpv( sout_stream_t *p_stream, sout_stream_id_t *id,
1458                               block_t *in )
1459 {
1460     int     i_max   = id->i_mtu - 12 - 4; /* payload max in one packet */
1461     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
1462
1463     uint8_t *p_data = in->p_buffer;
1464     int     i_data  = in->i_buffer;
1465     int     i;
1466     int     b_sequence_start = 0;
1467     int     i_temporal_ref = 0;
1468     int     i_picture_coding_type = 0;
1469     int     i_fbv = 0, i_bfc = 0, i_ffv = 0, i_ffc = 0;
1470     int     b_start_slice = 0;
1471
1472     /* preparse this packet to get some info */
1473     if( in->i_buffer > 4 )
1474     {
1475         uint8_t *p = p_data;
1476         int      i_rest = in->i_buffer;
1477
1478         for( ;; )
1479         {
1480             while( i_rest > 4 &&
1481                    ( p[0] != 0x00 || p[1] != 0x00 || p[2] != 0x01 ) )
1482             {
1483                 p++;
1484                 i_rest--;
1485             }
1486             if( i_rest <= 4 )
1487             {
1488                 break;
1489             }
1490             p += 3;
1491             i_rest -= 4;
1492
1493             if( *p == 0xb3 )
1494             {
1495                 /* sequence start code */
1496                 b_sequence_start = 1;
1497             }
1498             else if( *p == 0x00 && i_rest >= 4 )
1499             {
1500                 /* picture */
1501                 i_temporal_ref = ( p[1] << 2) |((p[2]>>6)&0x03);
1502                 i_picture_coding_type = (p[2] >> 3)&0x07;
1503
1504                 if( i_rest >= 4 && ( i_picture_coding_type == 2 ||
1505                                     i_picture_coding_type == 3 ) )
1506                 {
1507                     i_ffv = (p[3] >> 2)&0x01;
1508                     i_ffc = ((p[3]&0x03) << 1)|((p[4]>>7)&0x01);
1509                     if( i_rest > 4 && i_picture_coding_type == 3 )
1510                     {
1511                         i_fbv = (p[4]>>6)&0x01;
1512                         i_bfc = (p[4]>>3)&0x07;
1513                     }
1514                 }
1515             }
1516             else if( *p <= 0xaf )
1517             {
1518                 b_start_slice = 1;
1519             }
1520         }
1521     }
1522
1523     for( i = 0; i < i_count; i++ )
1524     {
1525         int           i_payload = __MIN( i_max, i_data );
1526         block_t *out = block_New( p_stream,
1527                                              16 + i_payload );
1528         uint32_t      h = ( i_temporal_ref << 16 )|
1529                           ( b_sequence_start << 13 )|
1530                           ( b_start_slice << 12 )|
1531                           ( i == i_count - 1 ? 1 << 11 : 0 )|
1532                           ( i_picture_coding_type << 8 )|
1533                           ( i_fbv << 7 )|( i_bfc << 4 )|( i_ffv << 3 )|i_ffc;
1534
1535         /* rtp common header */
1536         rtp_packetize_common( id, out, (i == i_count - 1)?1:0,
1537                               in->i_pts > 0 ? in->i_pts : in->i_dts );
1538
1539         /* MBZ:5 T:1 TR:10 AN:1 N:1 S:1 B:1 E:1 P:3 FBV:1 BFC:3 FFV:1 FFC:3 */
1540         out->p_buffer[12] = ( h >> 24 )&0xff;
1541         out->p_buffer[13] = ( h >> 16 )&0xff;
1542         out->p_buffer[14] = ( h >>  8 )&0xff;
1543         out->p_buffer[15] = ( h       )&0xff;
1544
1545         memcpy( &out->p_buffer[16], p_data, i_payload );
1546
1547         out->i_buffer   = 16 + i_payload;
1548         out->i_dts    = in->i_dts + i * in->i_length / i_count;
1549         out->i_length = in->i_length / i_count;
1550
1551         rtp_packetize_send( id, out );
1552
1553         p_data += i_payload;
1554         i_data -= i_payload;
1555     }
1556
1557     return VLC_SUCCESS;
1558 }
1559
1560 static int rtp_packetize_ac3( sout_stream_t *p_stream, sout_stream_id_t *id,
1561                               block_t *in )
1562 {
1563     int     i_max   = id->i_mtu - 12 - 2; /* payload max in one packet */
1564     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
1565
1566     uint8_t *p_data = in->p_buffer;
1567     int     i_data  = in->i_buffer;
1568     int     i;
1569
1570     for( i = 0; i < i_count; i++ )
1571     {
1572         int           i_payload = __MIN( i_max, i_data );
1573         block_t *out = block_New( p_stream, 14 + i_payload );
1574
1575         /* rtp common header */
1576         rtp_packetize_common( id, out, (i == i_count - 1)?1:0, in->i_pts );
1577         /* unit count */
1578         out->p_buffer[12] = 1;
1579         /* unit header */
1580         out->p_buffer[13] = 0x00;
1581         /* data */
1582         memcpy( &out->p_buffer[14], p_data, i_payload );
1583
1584         out->i_buffer   = 14 + i_payload;
1585         out->i_dts    = in->i_dts + i * in->i_length / i_count;
1586         out->i_length = in->i_length / i_count;
1587
1588         rtp_packetize_send( id, out );
1589
1590         p_data += i_payload;
1591         i_data -= i_payload;
1592     }
1593
1594     return VLC_SUCCESS;
1595 }
1596
1597 static int rtp_packetize_split( sout_stream_t *p_stream, sout_stream_id_t *id,
1598                                 block_t *in )
1599 {
1600     int     i_max   = id->i_mtu - 12; /* payload max in one packet */
1601     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
1602
1603     uint8_t *p_data = in->p_buffer;
1604     int     i_data  = in->i_buffer;
1605     int     i;
1606
1607     for( i = 0; i < i_count; i++ )
1608     {
1609         int           i_payload = __MIN( i_max, i_data );
1610         block_t *out = block_New( p_stream, 12 + i_payload );
1611
1612         /* rtp common header */
1613         rtp_packetize_common( id, out, ((i == i_count - 1)?1:0),
1614                               (in->i_pts > 0 ? in->i_pts : in->i_dts) );
1615         memcpy( &out->p_buffer[12], p_data, i_payload );
1616
1617         out->i_buffer   = 12 + i_payload;
1618         out->i_dts    = in->i_dts + i * in->i_length / i_count;
1619         out->i_length = in->i_length / i_count;
1620
1621         rtp_packetize_send( id, out );
1622
1623         p_data += i_payload;
1624         i_data -= i_payload;
1625     }
1626
1627     return VLC_SUCCESS;
1628 }
1629
1630 /* rfc3016 */
1631 static int rtp_packetize_mp4a_latm( sout_stream_t *p_stream, sout_stream_id_t *id,
1632                                 block_t *in )
1633 {
1634     int     i_max   = id->i_mtu - 14;              /* payload max in one packet */
1635     int     latmhdrsize = in->i_buffer / 0xff + 1;
1636     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
1637
1638     uint8_t *p_data = in->p_buffer, *p_header = NULL;
1639     int     i_data  = in->i_buffer;
1640     int     i;
1641
1642     for( i = 0; i < i_count; i++ )
1643     {
1644         int     i_payload = __MIN( i_max, i_data );
1645         block_t *out;
1646
1647         if( i != 0 )
1648             latmhdrsize = 0;
1649         out = block_New( p_stream, 12 + latmhdrsize + i_payload );
1650
1651         /* rtp common header */
1652         rtp_packetize_common( id, out, ((i == i_count - 1) ? 1 : 0),
1653                               (in->i_pts > 0 ? in->i_pts : in->i_dts) );
1654
1655         if( i == 0 )
1656         {
1657             int tmp = in->i_buffer;
1658
1659             p_header=out->p_buffer+12;
1660             while( tmp > 0xfe )
1661             {
1662                 *p_header = 0xff;
1663                 p_header++;
1664                 tmp -= 0xff;
1665             }
1666             *p_header = tmp;
1667         }
1668
1669         memcpy( &out->p_buffer[12+latmhdrsize], p_data, i_payload );
1670
1671         out->i_buffer   = 12 + latmhdrsize + i_payload;
1672         out->i_dts    = in->i_dts + i * in->i_length / i_count;
1673         out->i_length = in->i_length / i_count;
1674
1675         rtp_packetize_send( id, out );
1676
1677         p_data += i_payload;
1678         i_data -= i_payload;
1679     }
1680
1681     return VLC_SUCCESS;
1682 }
1683
1684 static int rtp_packetize_l16( sout_stream_t *p_stream, sout_stream_id_t *id,
1685                               block_t *in )
1686 {
1687     int     i_max   = id->i_mtu - 12; /* payload max in one packet */
1688     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
1689
1690     uint8_t *p_data = in->p_buffer;
1691     int     i_data  = in->i_buffer;
1692     int     i_packet = 0;
1693
1694     while( i_data > 0 )
1695     {
1696         int           i_payload = (__MIN( i_max, i_data )/4)*4;
1697         block_t *out = block_New( p_stream, 12 + i_payload );
1698
1699         /* rtp common header */
1700         rtp_packetize_common( id, out, 0,
1701                               (in->i_pts > 0 ? in->i_pts : in->i_dts) );
1702         memcpy( &out->p_buffer[12], p_data, i_payload );
1703
1704         out->i_buffer   = 12 + i_payload;
1705         out->i_dts    = in->i_dts + i_packet * in->i_length / i_count;
1706         out->i_length = in->i_length / i_count;
1707
1708         rtp_packetize_send( id, out );
1709
1710         p_data += i_payload;
1711         i_data -= i_payload;
1712         i_packet++;
1713     }
1714
1715     return VLC_SUCCESS;
1716 }
1717
1718 static int rtp_packetize_l8( sout_stream_t *p_stream, sout_stream_id_t *id,
1719                              block_t *in )
1720 {
1721     int     i_max   = id->i_mtu - 12; /* payload max in one packet */
1722     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
1723
1724     uint8_t *p_data = in->p_buffer;
1725     int     i_data  = in->i_buffer;
1726     int     i_packet = 0;
1727
1728     while( i_data > 0 )
1729     {
1730         int           i_payload = (__MIN( i_max, i_data )/2)*2;
1731         block_t *out = block_New( p_stream, 12 + i_payload );
1732
1733         /* rtp common header */
1734         rtp_packetize_common( id, out, 0,
1735                               (in->i_pts > 0 ? in->i_pts : in->i_dts) );
1736         memcpy( &out->p_buffer[12], p_data, i_payload );
1737
1738         out->i_buffer   = 12 + i_payload;
1739         out->i_dts    = in->i_dts + i_packet * in->i_length / i_count;
1740         out->i_length = in->i_length / i_count;
1741
1742         rtp_packetize_send( id, out );
1743
1744         p_data += i_payload;
1745         i_data -= i_payload;
1746         i_packet++;
1747     }
1748
1749     return VLC_SUCCESS;
1750 }
1751
1752 static int rtp_packetize_mp4a( sout_stream_t *p_stream, sout_stream_id_t *id,
1753                                block_t *in )
1754 {
1755     int     i_max   = id->i_mtu - 16; /* payload max in one packet */
1756     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
1757
1758     uint8_t *p_data = in->p_buffer;
1759     int     i_data  = in->i_buffer;
1760     int     i;
1761
1762     for( i = 0; i < i_count; i++ )
1763     {
1764         int           i_payload = __MIN( i_max, i_data );
1765         block_t *out = block_New( p_stream, 16 + i_payload );
1766
1767         /* rtp common header */
1768         rtp_packetize_common( id, out, ((i == i_count - 1)?1:0),
1769                               (in->i_pts > 0 ? in->i_pts : in->i_dts) );
1770         /* AU headers */
1771         /* AU headers length (bits) */
1772         out->p_buffer[12] = 0;
1773         out->p_buffer[13] = 2*8;
1774         /* for each AU length 13 bits + idx 3bits, */
1775         out->p_buffer[14] = ( in->i_buffer >> 5 )&0xff;
1776         out->p_buffer[15] = ( (in->i_buffer&0xff)<<3 )|0;
1777
1778         memcpy( &out->p_buffer[16], p_data, i_payload );
1779
1780         out->i_buffer   = 16 + i_payload;
1781         out->i_dts    = in->i_dts + i * in->i_length / i_count;
1782         out->i_length = in->i_length / i_count;
1783
1784         rtp_packetize_send( id, out );
1785
1786         p_data += i_payload;
1787         i_data -= i_payload;
1788     }
1789
1790     return VLC_SUCCESS;
1791 }
1792
1793
1794 /* rfc2429 */
1795 #define RTP_H263_HEADER_SIZE (2)  // plen = 0
1796 #define RTP_H263_PAYLOAD_START (14)  // plen = 0
1797 static int rtp_packetize_h263( sout_stream_t *p_stream, sout_stream_id_t *id,
1798                                block_t *in )
1799 {
1800     uint8_t *p_data = in->p_buffer;
1801     int     i_data  = in->i_buffer;
1802     int     i;
1803     int     i_max   = id->i_mtu - 12 - RTP_H263_HEADER_SIZE; /* payload max in one packet */
1804     int     i_count;
1805     int     b_p_bit;
1806     int     b_v_bit = 0; // no pesky error resilience
1807     int     i_plen = 0; // normally plen=0 for PSC packet
1808     int     i_pebit = 0; // because plen=0
1809     uint16_t h;
1810
1811     if( i_data < 2 )
1812     {
1813         return VLC_EGENERIC;
1814     }
1815     if( p_data[0] || p_data[1] )
1816     {
1817         return VLC_EGENERIC;
1818     }
1819     /* remove 2 leading 0 bytes */
1820     p_data += 2;
1821     i_data -= 2;
1822     i_count = ( i_data + i_max - 1 ) / i_max;
1823
1824     for( i = 0; i < i_count; i++ )
1825     {
1826         int      i_payload = __MIN( i_max, i_data );
1827         block_t *out = block_New( p_stream,
1828                                   RTP_H263_PAYLOAD_START + i_payload );
1829         b_p_bit = (i == 0) ? 1 : 0;
1830         h = ( b_p_bit << 10 )|
1831             ( b_v_bit << 9  )|
1832             ( i_plen  << 3  )|
1833               i_pebit;
1834
1835         /* rtp common header */
1836         //b_m_bit = 1; // always contains end of frame
1837         rtp_packetize_common( id, out, (i == i_count - 1)?1:0,
1838                               in->i_pts > 0 ? in->i_pts : in->i_dts );
1839
1840         /* h263 header */
1841         out->p_buffer[12] = ( h >>  8 )&0xff;
1842         out->p_buffer[13] = ( h       )&0xff;
1843         memcpy( &out->p_buffer[RTP_H263_PAYLOAD_START], p_data, i_payload );
1844
1845         out->i_buffer = RTP_H263_PAYLOAD_START + i_payload;
1846         out->i_dts    = in->i_dts + i * in->i_length / i_count;
1847         out->i_length = in->i_length / i_count;
1848
1849         rtp_packetize_send( id, out );
1850
1851         p_data += i_payload;
1852         i_data -= i_payload;
1853     }
1854
1855     return VLC_SUCCESS;
1856 }
1857
1858 /* rfc3984 */
1859 static int
1860 rtp_packetize_h264_nal( sout_stream_t *p_stream, sout_stream_id_t *id,
1861                         const uint8_t *p_data, int i_data, int64_t i_pts,
1862                         int64_t i_dts, vlc_bool_t b_last, int64_t i_length )
1863 {
1864     const int i_max = id->i_mtu - 12; /* payload max in one packet */
1865     int i_nal_hdr;
1866     int i_nal_type;
1867
1868     if( i_data < 5 )
1869         return VLC_SUCCESS;
1870
1871     i_nal_hdr = p_data[3];
1872     i_nal_type = i_nal_hdr&0x1f;
1873
1874     /* Skip start code */
1875     p_data += 3;
1876     i_data -= 3;
1877
1878     /* */
1879     if( i_data <= i_max )
1880     {
1881         /* Single NAL unit packet */
1882         block_t *out = block_New( p_stream, 12 + i_data );
1883         out->i_dts    = i_dts;
1884         out->i_length = i_length;
1885
1886         /* */
1887         rtp_packetize_common( id, out, b_last, i_pts );
1888         out->i_buffer = 12 + i_data;
1889
1890         memcpy( &out->p_buffer[12], p_data, i_data );
1891
1892         rtp_packetize_send( id, out );
1893     }
1894     else
1895     {
1896         /* FU-A Fragmentation Unit without interleaving */
1897         const int i_count = ( i_data-1 + i_max-2 - 1 ) / (i_max-2);
1898         int i;
1899
1900         p_data++;
1901         i_data--;
1902
1903         for( i = 0; i < i_count; i++ )
1904         {
1905             const int i_payload = __MIN( i_data, i_max-2 );
1906             block_t *out = block_New( p_stream, 12 + 2 + i_payload );
1907             out->i_dts    = i_dts + i * i_length / i_count;
1908             out->i_length = i_length / i_count;
1909
1910             /* */
1911             rtp_packetize_common( id, out, (b_last && i_payload == i_data), i_pts );
1912             out->i_buffer = 14 + i_payload;
1913
1914             /* FU indicator */
1915             out->p_buffer[12] = 0x00 | (i_nal_hdr & 0x60) | 28;
1916             /* FU header */
1917             out->p_buffer[13] = ( i == 0 ? 0x80 : 0x00 ) | ( (i == i_count-1) ? 0x40 : 0x00 )  | i_nal_type;
1918             memcpy( &out->p_buffer[14], p_data, i_payload );
1919
1920             rtp_packetize_send( id, out );
1921
1922             i_data -= i_payload;
1923             p_data += i_payload;
1924         }
1925     }
1926     return VLC_SUCCESS;
1927 }
1928
1929 static int rtp_packetize_h264( sout_stream_t *p_stream, sout_stream_id_t *id,
1930                                block_t *in )
1931 {
1932     const uint8_t *p_buffer = in->p_buffer;
1933     int i_buffer = in->i_buffer;
1934
1935     while( i_buffer > 4 && ( p_buffer[0] != 0 || p_buffer[1] != 0 || p_buffer[2] != 1 ) )
1936     {
1937         i_buffer--;
1938         p_buffer++;
1939     }
1940
1941     /* Split nal units */
1942     while( i_buffer > 4 )
1943     {
1944         int i_offset;
1945         int i_size = i_buffer;
1946         int i_skip = i_buffer;
1947
1948         /* search nal end */
1949         for( i_offset = 4; i_offset+2 < i_buffer ; i_offset++)
1950         {
1951             if( p_buffer[i_offset] == 0 && p_buffer[i_offset+1] == 0 && p_buffer[i_offset+2] == 1 )
1952             {
1953                 /* we found another startcode */
1954                 i_size = i_offset - ( p_buffer[i_offset-1] == 0 ? 1 : 0);
1955                 i_skip = i_offset;
1956                 break;
1957             }
1958         }
1959         /* TODO add STAP-A to remove a lot of overhead with small slice/sei/... */
1960         rtp_packetize_h264_nal( p_stream, id, p_buffer, i_size,
1961                                 (in->i_pts > 0 ? in->i_pts : in->i_dts), in->i_dts,
1962                                 (i_size >= i_buffer), in->i_length * i_size / in->i_buffer );
1963
1964         i_buffer -= i_skip;
1965         p_buffer += i_skip;
1966     }
1967     return VLC_SUCCESS;
1968 }
1969
1970 static int rtp_packetize_amr( sout_stream_t *p_stream, sout_stream_id_t *id,
1971                               block_t *in )
1972 {
1973     int     i_max   = id->i_mtu - 14; /* payload max in one packet */
1974     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
1975
1976     uint8_t *p_data = in->p_buffer;
1977     int     i_data  = in->i_buffer;
1978     int     i;
1979
1980     /* Only supports octet-aligned mode */
1981     for( i = 0; i < i_count; i++ )
1982     {
1983         int           i_payload = __MIN( i_max, i_data );
1984         block_t *out = block_New( p_stream, 14 + i_payload );
1985
1986         /* rtp common header */
1987         rtp_packetize_common( id, out, ((i == i_count - 1)?1:0),
1988                               (in->i_pts > 0 ? in->i_pts : in->i_dts) );
1989         /* Payload header */
1990         out->p_buffer[12] = 0xF0; /* CMR */
1991         out->p_buffer[13] = p_data[0]&0x7C; /* ToC */ /* FIXME: frame type */
1992
1993         /* FIXME: are we fed multiple frames ? */
1994         memcpy( &out->p_buffer[14], p_data+1, i_payload-1 );
1995
1996         out->i_buffer   = 14 + i_payload-1;
1997         out->i_dts    = in->i_dts + i * in->i_length / i_count;
1998         out->i_length = in->i_length / i_count;
1999
2000         rtp_packetize_send( id, out );
2001
2002         p_data += i_payload;
2003         i_data -= i_payload;
2004     }
2005
2006     return VLC_SUCCESS;
2007 }
2008
2009 static int rtp_packetize_t140( sout_stream_t *p_stream, sout_stream_id_t *id,
2010                                block_t *in )
2011 {
2012     const size_t   i_max  = id->i_mtu - 12;
2013     const uint8_t *p_data = in->p_buffer;
2014     size_t         i_data = in->i_buffer;
2015
2016     for( unsigned i_packet = 0; i_data > 0; i_packet++ )
2017     {
2018         size_t i_payload = i_data;
2019
2020         /* Make sure we stop on an UTF-8 character boundary
2021          * (assuming the input is valid UTF-8) */
2022         if( i_data > i_max )
2023         {
2024             i_payload = i_max;
2025
2026             while( ( p_data[i_payload] & 0xC0 ) == 0x80 )
2027             {
2028                 if( i_payload == 0 )
2029                     return VLC_SUCCESS; /* fishy input! */
2030
2031                 i_payload--;
2032             }
2033         }
2034
2035         block_t *out = block_New( p_stream, 12 + i_payload );
2036         if( out == NULL )
2037             return VLC_SUCCESS;
2038
2039         rtp_packetize_common( id, out, 0, in->i_pts + i_packet );
2040         memcpy( out->p_buffer + 12, p_data, i_payload );
2041
2042         out->i_buffer = 12 + i_payload;
2043         out->i_dts    = out->i_pts;
2044         out->i_length = 0;
2045
2046         rtp_packetize_send( id, out );
2047
2048         p_data += i_payload;
2049         i_data -= i_payload;
2050     }
2051
2052     return VLC_SUCCESS;
2053 }
2054
2055 /*****************************************************************************
2056  * Non-RTP mux
2057  *****************************************************************************/
2058
2059 /** Add an ES to a non-RTP muxed stream */
2060 static sout_stream_id_t *MuxAdd( sout_stream_t *p_stream, es_format_t *p_fmt )
2061 {
2062     sout_input_t      *p_input;
2063     sout_mux_t *p_mux = p_stream->p_sys->p_mux;
2064     assert( p_mux != NULL );
2065
2066     p_input = sout_MuxAddStream( p_mux, p_fmt );
2067     if( p_input == NULL )
2068     {
2069         msg_Err( p_stream, "cannot add this stream to the muxer" );
2070         return NULL;
2071     }
2072
2073     return (sout_stream_id_t *)p_input;
2074 }
2075
2076
2077 static int MuxSend( sout_stream_t *p_stream, sout_stream_id_t *id,
2078                     block_t *p_buffer )
2079 {
2080     sout_mux_t *p_mux = p_stream->p_sys->p_mux;
2081     assert( p_mux != NULL );
2082
2083     sout_MuxSendBuffer( p_mux, (sout_input_t *)id, p_buffer );
2084     return VLC_SUCCESS;
2085 }
2086
2087
2088 /** Remove an ES from a non-RTP muxed stream */
2089 static int MuxDel( sout_stream_t *p_stream, sout_stream_id_t *id )
2090 {
2091     sout_mux_t *p_mux = p_stream->p_sys->p_mux;
2092     assert( p_mux != NULL );
2093
2094     sout_MuxDeleteStream( p_mux, (sout_input_t *)id );
2095     return VLC_SUCCESS;
2096 }
2097
2098
2099 static int AccessOutGrabberWriteBuffer( sout_stream_t *p_stream,
2100                                         const block_t *p_buffer )
2101 {
2102     sout_stream_sys_t *p_sys = p_stream->p_sys;
2103     sout_stream_id_t *id = p_sys->es[0];
2104
2105     int64_t  i_dts = p_buffer->i_dts;
2106
2107     uint8_t         *p_data = p_buffer->p_buffer;
2108     unsigned int    i_data  = p_buffer->i_buffer;
2109     unsigned int    i_max   = id->i_mtu - 12;
2110
2111     unsigned i_packet = ( p_buffer->i_buffer + i_max - 1 ) / i_max;
2112
2113     while( i_data > 0 )
2114     {
2115         unsigned int i_size;
2116
2117         /* output complete packet */
2118         if( p_sys->packet &&
2119             p_sys->packet->i_buffer + i_data > i_max )
2120         {
2121             rtp_packetize_send( id, p_sys->packet );
2122             p_sys->packet = NULL;
2123         }
2124
2125         if( p_sys->packet == NULL )
2126         {
2127             /* allocate a new packet */
2128             p_sys->packet = block_New( p_stream, id->i_mtu );
2129             rtp_packetize_common( id, p_sys->packet, 1, i_dts );
2130             p_sys->packet->i_dts = i_dts;
2131             p_sys->packet->i_length = p_buffer->i_length / i_packet;
2132             i_dts += p_sys->packet->i_length;
2133         }
2134
2135         i_size = __MIN( i_data,
2136                         (unsigned)(id->i_mtu - p_sys->packet->i_buffer) );
2137
2138         memcpy( &p_sys->packet->p_buffer[p_sys->packet->i_buffer],
2139                 p_data, i_size );
2140
2141         p_sys->packet->i_buffer += i_size;
2142         p_data += i_size;
2143         i_data -= i_size;
2144     }
2145
2146     return VLC_SUCCESS;
2147 }
2148
2149
2150 static int AccessOutGrabberWrite( sout_access_out_t *p_access,
2151                                   block_t *p_buffer )
2152 {
2153     sout_stream_t *p_stream = (sout_stream_t*)p_access->p_sys;
2154
2155     while( p_buffer )
2156     {
2157         block_t *p_next;
2158
2159         AccessOutGrabberWriteBuffer( p_stream, p_buffer );
2160
2161         p_next = p_buffer->p_next;
2162         block_Release( p_buffer );
2163         p_buffer = p_next;
2164     }
2165
2166     return VLC_SUCCESS;
2167 }
2168
2169
2170 static sout_access_out_t *GrabberCreate( sout_stream_t *p_stream )
2171 {
2172     sout_access_out_t *p_grab;
2173
2174     p_grab = vlc_object_create( p_stream->p_sout, sizeof( *p_grab ) );
2175     if( p_grab == NULL )
2176         return NULL;
2177
2178     p_grab->p_module    = NULL;
2179     p_grab->p_sout      = p_stream->p_sout;
2180     p_grab->psz_access  = strdup( "grab" );
2181     p_grab->p_cfg       = NULL;
2182     p_grab->psz_path    = strdup( "" );
2183     p_grab->p_sys       = (sout_access_out_sys_t *)p_stream;
2184     p_grab->pf_seek     = NULL;
2185     p_grab->pf_write    = AccessOutGrabberWrite;
2186     return p_grab;
2187 }