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