]> git.sesse.net Git - vlc/blob - modules/stream_out/rtp.c
Remove stdlib.h
[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 #include <stdio.h>
29 #ifdef HAVE_UNISTD_H
30 #   include <unistd.h>
31 #endif
32
33 #include <errno.h>
34
35 #include <vlc/vlc.h>
36 #include <vlc_sout.h>
37 #include <vlc_block.h>
38
39 #include <vlc_httpd.h>
40 #include <vlc_url.h>
41 #include <vlc_network.h>
42 #include <vlc_charset.h>
43 #include <vlc_strings.h>
44
45 /*****************************************************************************
46  * Module descriptor
47  *****************************************************************************/
48
49 #define MTU_REDUCE 50
50
51 #define DST_TEXT N_("Destination")
52 #define DST_LONGTEXT N_( \
53     "This is the output URL that will be used." )
54 #define SDP_TEXT N_("SDP")
55 #define SDP_LONGTEXT N_( \
56     "This allows you to specify how the SDP (Session Descriptor) for this RTP "\
57     "session will be made available. You must use an url: http://location to " \
58     "access the SDP via HTTP, rtsp://location for RTSP access, and sap:// " \
59     "for the SDP to be announced via SAP." )
60 #define MUX_TEXT N_("Muxer")
61 #define MUX_LONGTEXT N_( \
62     "This allows you to specify the muxer used for the streaming output. " \
63     "Default is to use no muxer (standard RTP stream)." )
64
65 #define NAME_TEXT N_("Session name")
66 #define NAME_LONGTEXT N_( \
67     "This is the name of the session that will be announced in the SDP " \
68     "(Session Descriptor)." )
69 #define DESC_TEXT N_("Session description")
70 #define DESC_LONGTEXT N_( \
71     "This allows you to give a broader description of the stream, that will " \
72     "be announced in the SDP (Session Descriptor)." )
73 #define URL_TEXT N_("Session URL")
74 #define URL_LONGTEXT N_( \
75     "This allows you to give an URL with more details about the stream " \
76     "(often the website of the streaming organization), that will " \
77     "be announced in the SDP (Session Descriptor)." )
78 #define EMAIL_TEXT N_("Session email")
79 #define EMAIL_LONGTEXT N_( \
80    "This allows you to give a contact mail address for the stream, that will " \
81    "be announced in the SDP (Session Descriptor)." )
82 #define PORT_TEXT N_("Port")
83 #define PORT_LONGTEXT N_( \
84     "This allows you to specify the base port for the RTP streaming." )
85 #define PORT_AUDIO_TEXT N_("Audio port")
86 #define PORT_AUDIO_LONGTEXT N_( \
87     "This allows you to specify the default audio port for the RTP streaming." )
88 #define PORT_VIDEO_TEXT N_("Video port")
89 #define PORT_VIDEO_LONGTEXT N_( \
90     "This allows you to specify the default video port for the RTP streaming." )
91
92 #define TTL_TEXT N_("Hop limit (TTL)")
93 #define TTL_LONGTEXT N_( \
94     "This is the hop limit (also known as \"Time-To-Live\" or TTL) of " \
95     "the multicast packets sent by the stream output (0 = use operating " \
96     "system built-in default).")
97
98 #define RFC3016_TEXT N_("MP4A LATM")
99 #define RFC3016_LONGTEXT N_( \
100     "This allows you to stream MPEG4 LATM audio streams (see RFC3016)." )
101
102 static int  Open ( vlc_object_t * );
103 static void Close( vlc_object_t * );
104
105 #define SOUT_CFG_PREFIX "sout-rtp-"
106
107 vlc_module_begin();
108     set_shortname( _("RTP"));
109     set_description( _("RTP stream output") );
110     set_capability( "sout stream", 0 );
111     add_shortcut( "rtp" );
112     set_category( CAT_SOUT );
113     set_subcategory( SUBCAT_SOUT_STREAM );
114
115     add_string( SOUT_CFG_PREFIX "dst", "", NULL, DST_TEXT,
116                 DST_LONGTEXT, VLC_TRUE );
117     add_string( SOUT_CFG_PREFIX "sdp", "", NULL, SDP_TEXT,
118                 SDP_LONGTEXT, VLC_TRUE );
119     add_string( SOUT_CFG_PREFIX "mux", "", NULL, MUX_TEXT,
120                 MUX_LONGTEXT, VLC_TRUE );
121
122     add_string( SOUT_CFG_PREFIX "name", "NONE", NULL, NAME_TEXT,
123                 NAME_LONGTEXT, VLC_TRUE );
124     add_string( SOUT_CFG_PREFIX "description", "", NULL, DESC_TEXT,
125                 DESC_LONGTEXT, VLC_TRUE );
126     add_string( SOUT_CFG_PREFIX "url", "", NULL, URL_TEXT,
127                 URL_LONGTEXT, VLC_TRUE );
128     add_string( SOUT_CFG_PREFIX "email", "", NULL, EMAIL_TEXT,
129                 EMAIL_LONGTEXT, VLC_TRUE );
130
131     add_integer( SOUT_CFG_PREFIX "port", 1234, NULL, PORT_TEXT,
132                  PORT_LONGTEXT, VLC_TRUE );
133     add_integer( SOUT_CFG_PREFIX "port-audio", 1230, NULL, PORT_AUDIO_TEXT,
134                  PORT_AUDIO_LONGTEXT, VLC_TRUE );
135     add_integer( SOUT_CFG_PREFIX "port-video", 1232, NULL, PORT_VIDEO_TEXT,
136                  PORT_VIDEO_LONGTEXT, VLC_TRUE );
137
138     add_integer( SOUT_CFG_PREFIX "ttl", 0, NULL, TTL_TEXT,
139                  TTL_LONGTEXT, VLC_TRUE );
140
141     add_bool( SOUT_CFG_PREFIX "mp4a-latm", 0, NULL, RFC3016_TEXT,
142                  RFC3016_LONGTEXT, VLC_FALSE );
143
144     set_callbacks( Open, Close );
145 vlc_module_end();
146
147 /*****************************************************************************
148  * Exported prototypes
149  *****************************************************************************/
150 static const char *ppsz_sout_options[] = {
151     "dst", "name", "port", "port-audio", "port-video", "*sdp", "ttl", "mux",
152     "description", "url","email", "mp4a-latm", NULL
153 };
154
155 static sout_stream_id_t *Add ( sout_stream_t *, es_format_t * );
156 static int               Del ( sout_stream_t *, sout_stream_id_t * );
157 static int               Send( sout_stream_t *, sout_stream_id_t *,
158                                block_t* );
159
160 /* For unicast/interleaved streaming */
161 typedef struct
162 {
163     char    *psz_session;
164     int64_t i_last; /* for timeout */
165
166     /* is it in "play" state */
167     vlc_bool_t b_playing;
168
169     /* output (id-access) */
170     int               i_id;
171     sout_stream_id_t  **id;
172     int               i_access;
173     sout_access_out_t **access;
174 } rtsp_client_t;
175
176 struct sout_stream_sys_t
177 {
178     /* sdp */
179     int64_t i_sdp_id;
180     int     i_sdp_version;
181     char    *psz_sdp;
182     vlc_mutex_t  lock_sdp;
183
184     char        *psz_session_name;
185     char        *psz_session_description;
186     char        *psz_session_url;
187     char        *psz_session_email;
188
189     /* */
190     vlc_bool_t b_export_sdp_file;
191     char *psz_sdp_file;
192     /* sap */
193     vlc_bool_t b_export_sap;
194     session_descriptor_t *p_session;
195
196     httpd_host_t *p_httpd_host;
197     httpd_file_t *p_httpd_file;
198
199     httpd_host_t *p_rtsp_host;
200     httpd_url_t  *p_rtsp_url;
201     char         *psz_rtsp_control;
202     char         *psz_rtsp_path;
203
204     /* */
205     char *psz_destination;
206     int  i_port;
207     int  i_port_audio;
208     int  i_port_video;
209     int  i_ttl;
210     vlc_bool_t b_latm;
211
212     /* when need to use a private one or when using muxer */
213     int i_payload_type;
214
215     /* in case we do TS/PS over rtp */
216     sout_mux_t        *p_mux;
217     sout_access_out_t *p_access;
218     int               i_mtu;
219     sout_access_out_t *p_grab;
220     uint16_t          i_sequence;
221     uint32_t          i_timestamp_start;
222     uint8_t           ssrc[4];
223     block_t           *packet;
224
225     /* */
226     vlc_mutex_t      lock_es;
227     int              i_es;
228     sout_stream_id_t **es;
229
230     /* */
231     int              i_rtsp;
232     rtsp_client_t    **rtsp;
233 };
234
235 typedef int (*pf_rtp_packetizer_t)( sout_stream_t *, sout_stream_id_t *,
236                                     block_t * );
237
238 struct sout_stream_id_t
239 {
240     sout_stream_t *p_stream;
241     /* rtp field */
242     uint8_t     i_payload_type;
243     uint16_t    i_sequence;
244     uint32_t    i_timestamp_start;
245     uint8_t     ssrc[4];
246
247     /* for sdp */
248     int         i_clock_rate;
249     char        *psz_rtpmap;
250     char        *psz_fmtp;
251     char        *psz_destination;
252     int         i_port;
253     int         i_cat;
254     int         i_bitrate;
255
256     /* Packetizer specific fields */
257     pf_rtp_packetizer_t pf_packetize;
258     int           i_mtu;
259
260     /* for sending the packets */
261     sout_access_out_t *p_access;
262
263     vlc_mutex_t       lock_rtsp;
264     int               i_rtsp_access;
265     sout_access_out_t **rtsp_access;
266
267     /* */
268     sout_input_t      *p_input;
269
270     /* RTSP url control */
271     httpd_url_t  *p_rtsp_url;
272 };
273
274 static int AccessOutGrabberWrite( sout_access_out_t *, block_t * );
275
276 static void SDPHandleUrl( sout_stream_t *, char * );
277
278 static int SapSetup( sout_stream_t *p_stream );
279 static int FileSetup( sout_stream_t *p_stream );
280 static int HttpSetup( sout_stream_t *p_stream, vlc_url_t * );
281 static int RtspSetup( sout_stream_t *p_stream, vlc_url_t * );
282
283 static int  RtspCallback( httpd_callback_sys_t *, httpd_client_t *,
284                           httpd_message_t *, httpd_message_t * );
285 static int  RtspCallbackId( httpd_callback_sys_t *, httpd_client_t *,
286                             httpd_message_t *, httpd_message_t * );
287
288
289 static rtsp_client_t *RtspClientNew( sout_stream_t *, const char *psz_session );
290 static rtsp_client_t *RtspClientGet( sout_stream_t *, const char *psz_session );
291 static void           RtspClientDel( sout_stream_t *, rtsp_client_t * );
292
293 /*****************************************************************************
294  * Open:
295  *****************************************************************************/
296 static int Open( vlc_object_t *p_this )
297 {
298     sout_stream_t       *p_stream = (sout_stream_t*)p_this;
299     sout_instance_t     *p_sout = p_stream->p_sout;
300     sout_stream_sys_t   *p_sys = NULL;
301     config_chain_t      *p_cfg = NULL;
302     vlc_value_t         val;
303     vlc_bool_t          b_rtsp = VLC_FALSE;
304
305     config_ChainParse( p_stream, SOUT_CFG_PREFIX,
306                        ppsz_sout_options, p_stream->p_cfg );
307
308     p_sys = malloc( sizeof( sout_stream_sys_t ) );
309
310     p_sys->psz_destination = var_GetString( p_stream, SOUT_CFG_PREFIX "dst" );
311     if( *p_sys->psz_destination == '\0' )
312     {
313         free( p_sys->psz_destination );
314         p_sys->psz_destination = NULL;
315     }
316
317     p_sys->psz_session_name = var_GetString( p_stream, SOUT_CFG_PREFIX "name" );
318     p_sys->psz_session_description = var_GetString( p_stream, SOUT_CFG_PREFIX "description" );
319     p_sys->psz_session_url = var_GetString( p_stream, SOUT_CFG_PREFIX "url" );
320     p_sys->psz_session_email = var_GetString( 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         {
347             if( p_cfg->psz_value && !strncasecmp( p_cfg->psz_value, "rtsp", 4 ) )
348             {
349                 b_rtsp = VLC_TRUE;
350                 break;
351             }
352         }
353     }
354     if( !b_rtsp )
355     {
356         vlc_value_t val2;
357         var_Get( p_stream, SOUT_CFG_PREFIX "sdp", &val2 );
358         if( !strncasecmp( val2.psz_string, "rtsp", 4 ) )
359             b_rtsp = VLC_TRUE;
360         free( val2.psz_string );
361     }
362
363     if( !p_sys->psz_destination || *p_sys->psz_destination == '\0' )
364     {
365         if( !b_rtsp )
366         {
367             msg_Err( p_stream, "missing destination and not in rtsp mode" );
368             free( p_sys );
369             return VLC_EGENERIC;
370         }
371         p_sys->psz_destination = NULL;
372     }
373     else if( p_sys->i_port <= 0 )
374     {
375         msg_Err( p_stream, "invalid port" );
376         free( p_sys );
377         return VLC_EGENERIC;
378     }
379
380     var_Get( p_stream, SOUT_CFG_PREFIX "ttl", &val );
381     if( val.i_int == 0 )
382     {
383         /* Normally, we should let the default hop limit up to the core,
384          * but we have to know it to build our SDP properly, which is why
385          * we ask the core. FIXME: broken when neither sout-rtp-ttl nor
386          * ttl are set. */
387         val.i_int = config_GetInt( p_stream, "ttl" );
388     }
389     if( val.i_int > 255 ) val.i_int = 255;
390     /* must not exceed 999 once formatted */
391
392     if( val.i_int < 0 )
393         msg_Warn( p_stream, "illegal TTL %d, the SDP advertised value will be faked", val.i_int );
394     p_sys->i_ttl = val.i_int;
395
396     var_Get( p_stream, SOUT_CFG_PREFIX "mp4a-latm", &val );
397     p_sys->b_latm = val.b_bool;
398
399     p_sys->i_payload_type = 96;
400     p_sys->i_es = 0;
401     p_sys->es   = NULL;
402     p_sys->i_rtsp = 0;
403     p_sys->rtsp   = NULL;
404     p_sys->psz_sdp = NULL;
405
406     p_sys->i_sdp_id = mdate();
407     p_sys->i_sdp_version = 1;
408     p_sys->psz_sdp = NULL;
409
410     p_sys->b_export_sap = VLC_FALSE;
411     p_sys->b_export_sdp_file = VLC_FALSE;
412     p_sys->p_session = NULL;
413
414     p_sys->p_httpd_host = NULL;
415     p_sys->p_httpd_file = NULL;
416     p_sys->p_rtsp_host  = NULL;
417     p_sys->p_rtsp_url   = NULL;
418     p_sys->psz_rtsp_control = NULL;
419     p_sys->psz_rtsp_path = NULL;
420
421     vlc_mutex_init( p_stream, &p_sys->lock_sdp );
422     vlc_mutex_init( p_stream, &p_sys->lock_es );
423
424     p_stream->pf_add    = Add;
425     p_stream->pf_del    = Del;
426     p_stream->pf_send   = Send;
427
428     p_stream->p_sys     = p_sys;
429
430     var_Get( p_stream, SOUT_CFG_PREFIX "mux", &val );
431     if( *val.psz_string )
432     {
433         sout_access_out_t *p_grab;
434         const char *psz_rtpmap;
435         char url[NI_MAXHOST + 8], access[22], psz_ttl[5], ipv;
436
437         if( b_rtsp )
438         {
439             msg_Err( p_stream, "muxing is not supported in RTSP mode" );
440             free( p_sys );
441             return VLC_EGENERIC;
442         }
443         else if( !p_sys->psz_destination || *p_sys->psz_destination == '\0' )
444         {
445             msg_Err( p_stream, "rtp needs a destination when muxing" );
446             free( p_sys );
447             return VLC_EGENERIC;
448         }
449
450         /* Check muxer type */
451         if( !strncasecmp( val.psz_string, "ps", 2 ) || !strncasecmp( val.psz_string, "mpeg1", 5 ) )
452         {
453             psz_rtpmap = "MP2P/90000";
454         }
455         else if( !strncasecmp( val.psz_string, "ts", 2 ) )
456         {
457             psz_rtpmap = "MP2T/90000";
458             p_sys->i_payload_type = 33;
459         }
460         else
461         {
462             msg_Err( p_stream, "unsupported muxer type with rtp (only ts/ps)" );
463             free( p_sys );
464             return VLC_EGENERIC;
465         }
466
467         /* create the access out */
468         if( p_sys->i_ttl > 0 )
469         {
470             sprintf( access, "udp{raw,rtcp,ttl=%d}", p_sys->i_ttl );
471         }
472         else
473         {
474             sprintf( access, "udp{raw,rtcp}" );
475         }
476
477         /* IPv6 needs brackets if not already present */
478         snprintf( url, sizeof( url ),
479                   ( ( p_sys->psz_destination[0] != '[' ) 
480                  && ( strchr( p_sys->psz_destination, ':' ) != NULL ) )
481                   ? "[%s]:%d" : "%s:%d", p_sys->psz_destination,
482                   p_sys->i_port );
483         url[sizeof( url ) - 1] = '\0';
484         /* FIXME: we should check that url is a numerical address, otherwise
485          * the SDP will be quite broken (regardless of the IP protocol version)
486          * Also it might be IPv6 with no ':' if it is a DNS name.
487          */
488         ipv = ( strchr( p_sys->psz_destination, ':' ) != NULL ) ? '6' : '4';
489
490         if( !( p_sys->p_access = sout_AccessOutNew( p_sout, access, url ) ) )
491         {
492             msg_Err( p_stream, "cannot create the access out for %s://%s",
493                      access, url );
494             free( p_sys );
495             return VLC_EGENERIC;
496         }
497         p_sys->i_mtu = config_GetInt( p_stream, "mtu" );  /* XXX beurk */
498         if( p_sys->i_mtu <= 16 + MTU_REDUCE )
499         {
500             /* better than nothing */
501             p_sys->i_mtu = 1500;
502         }
503         p_sys->i_mtu -= MTU_REDUCE;
504
505         /* the access out grabber TODO export it as sout_AccessOutGrabberNew */
506         p_grab = p_sys->p_grab =
507             vlc_object_create( p_sout, sizeof( sout_access_out_t ) );
508         p_grab->p_module    = NULL;
509         p_grab->p_sout      = p_sout;
510         p_grab->psz_access  = strdup( "grab" );
511         p_grab->p_cfg       = NULL;
512         p_grab->psz_path    = strdup( "" );
513         p_grab->p_sys       = (sout_access_out_sys_t*)p_stream;
514         p_grab->pf_seek     = NULL;
515         p_grab->pf_write    = AccessOutGrabberWrite;
516
517         /* the muxer */
518         if( !( p_sys->p_mux = sout_MuxNew( p_sout, val.psz_string, p_sys->p_grab ) ) )
519         {
520             msg_Err( p_stream, "cannot create the muxer (%s)", val.psz_string );
521             sout_AccessOutDelete( p_sys->p_grab );
522             sout_AccessOutDelete( p_sys->p_access );
523             free( p_sys );
524             return VLC_EGENERIC;
525         }
526
527         /* create the SDP for a muxed stream (only once) */
528         /* FIXME  http://www.faqs.org/rfcs/rfc4566.html
529            o= - should be local username (no spaces allowed)
530            o= time should be hashed with some other value to garantee uniqueness
531            o= don't use the localhost address. use fully qualified domain name or IP4 address
532            a= source-filter: we need our source address
533            a= x-plgroup: (missing)
534            RTP packets need to get the correct src IP address  */
535         if( ipv == 4 && net_AddressIsMulticast( VLC_OBJECT(p_stream), p_sys->psz_destination ) )
536         {
537             snprintf( psz_ttl, sizeof( psz_ttl ), "/%d", p_sys->i_ttl );
538             psz_ttl[sizeof( psz_ttl ) - 1] = '\0';
539         }
540         else
541         {
542             psz_ttl[0] = '\0'; 
543         }
544
545         asprintf( &p_sys->psz_sdp,
546                   "v=0\r\n"
547                   /* FIXME: source address not known :( */
548                   "o=- "I64Fd" %d IN IP%c %s\r\n"
549                   "s=%s\r\n"
550                   "i=%s\r\n"
551                   "u=%s\r\n"
552                   "e=%s\r\n"
553                   "c=IN IP%c %s%s\r\n"
554                   "t=0 0\r\n" /* permanent stream */ /* when scheduled from vlm, we should set this info correctly */
555                   "a=tool:"PACKAGE_STRING"\r\n"
556                   "a=recvonly\r\n"
557                   "a=type:broadcast\r\n"
558                   "m=video %d RTP/AVP %d\r\n"
559                   "a=rtpmap:%d %s\r\n",
560                   p_sys->i_sdp_id, p_sys->i_sdp_version,
561                   ipv, ipv == '6' ? "::1" : "127.0.0.1" /* FIXME */,
562                   p_sys->psz_session_name,
563                   p_sys->psz_session_description,
564                   p_sys->psz_session_url,
565                   p_sys->psz_session_email,
566                   ipv, p_sys->psz_destination, psz_ttl,
567                   p_sys->i_port, p_sys->i_payload_type,
568                   p_sys->i_payload_type, psz_rtpmap );
569         msg_Dbg( p_stream, "sdp=%s", p_sys->psz_sdp );
570
571         /* create the rtp context */
572         p_sys->ssrc[0] = rand()&0xff;
573         p_sys->ssrc[1] = rand()&0xff;
574         p_sys->ssrc[2] = rand()&0xff;
575         p_sys->ssrc[3] = rand()&0xff;
576         p_sys->i_sequence = rand()&0xffff;
577         p_sys->i_timestamp_start = rand()&0xffffffff;
578         p_sys->packet = NULL;
579     }
580     else
581     {
582         p_sys->p_mux    = NULL;
583         p_sys->p_access = NULL;
584         p_sys->p_grab   = NULL;
585     }
586     free( val.psz_string );
587
588
589     var_Get( p_stream, SOUT_CFG_PREFIX "sdp", &val );
590     if( *val.psz_string )
591     {
592         config_chain_t *p_cfg;
593
594         SDPHandleUrl( p_stream, val.psz_string );
595
596         for( p_cfg = p_stream->p_cfg; p_cfg != NULL; p_cfg = p_cfg->p_next )
597         {
598             if( !strcmp( p_cfg->psz_name, "sdp" ) )
599             {
600                 if( p_cfg->psz_value == NULL || *p_cfg->psz_value == '\0' )
601                     continue;
602
603                 if( !strcmp( p_cfg->psz_value, val.psz_string ) )   /* needed both :sout-rtp-sdp= and rtp{sdp=} can be used */
604                     continue;
605
606                 SDPHandleUrl( p_stream, p_cfg->psz_value );
607             }
608         }
609     }
610     free( val.psz_string );
611
612     /* update p_sout->i_out_pace_nocontrol */
613     p_stream->p_sout->i_out_pace_nocontrol++;
614
615     return VLC_SUCCESS;
616 }
617
618 /*****************************************************************************
619  * Close:
620  *****************************************************************************/
621 static void Close( vlc_object_t * p_this )
622 {
623     sout_stream_t     *p_stream = (sout_stream_t*)p_this;
624     sout_stream_sys_t *p_sys = p_stream->p_sys;
625
626     /* update p_sout->i_out_pace_nocontrol */
627     p_stream->p_sout->i_out_pace_nocontrol--;
628
629     if( p_sys->p_mux )
630     {
631         sout_MuxDelete( p_sys->p_mux );
632         sout_AccessOutDelete( p_sys->p_access );
633         sout_AccessOutDelete( p_sys->p_grab );
634         if( p_sys->packet )
635         {
636             block_Release( p_sys->packet );
637         }
638         if( p_sys->b_export_sap )
639         {   
640             p_sys->p_mux = NULL;
641             SapSetup( p_stream );
642         }
643     }
644
645     while( p_sys->i_rtsp > 0 )
646         RtspClientDel( p_stream, p_sys->rtsp[0] );
647
648     vlc_mutex_destroy( &p_sys->lock_sdp );
649
650     if( p_sys->p_httpd_file )
651         httpd_FileDelete( p_sys->p_httpd_file );
652
653     if( p_sys->p_httpd_host )
654         httpd_HostDelete( p_sys->p_httpd_host );
655
656     if( p_sys->p_rtsp_url )
657         httpd_UrlDelete( p_sys->p_rtsp_url );
658
659     if( p_sys->p_rtsp_host )
660         httpd_HostDelete( p_sys->p_rtsp_host );
661
662     if( p_sys->psz_session_name )
663         free( p_sys->psz_session_name );
664
665     if( p_sys->psz_session_description )
666         free( p_sys->psz_session_description );
667
668     if( p_sys->psz_session_url )
669         free( p_sys->psz_session_url );
670
671     if( p_sys->psz_session_email )
672         free( p_sys->psz_session_email );
673
674     if( p_sys->psz_sdp )
675         free( p_sys->psz_sdp );
676
677     if( p_sys->b_export_sdp_file )
678     {
679 #ifdef HAVE_UNISTD_H
680         unlink( p_sys->psz_sdp_file );
681 #endif
682         free( p_sys->psz_sdp_file );
683     }
684     if( p_sys->psz_destination )
685         free( p_sys->psz_destination );
686     free( p_sys );
687 }
688
689 /*****************************************************************************
690  * SDPHandleUrl:
691  *****************************************************************************/
692 static void SDPHandleUrl( sout_stream_t *p_stream, char *psz_url )
693 {
694     sout_stream_sys_t *p_sys = p_stream->p_sys;
695     vlc_url_t url;
696
697     vlc_UrlParse( &url, psz_url, 0 );
698     if( url.psz_protocol && !strcasecmp( url.psz_protocol, "http" ) )
699     {
700         if( p_sys->p_httpd_file )
701         {
702             msg_Err( p_stream, "you can use sdp=http:// only once" );
703             return;
704         }
705
706         if( HttpSetup( p_stream, &url ) )
707         {
708             msg_Err( p_stream, "cannot export sdp as http" );
709         }
710     }
711     else if( url.psz_protocol && !strcasecmp( url.psz_protocol, "rtsp" ) )
712     {
713         if( p_sys->p_rtsp_url )
714         {
715             msg_Err( p_stream, "you can use sdp=rtsp:// only once" );
716             return;
717         }
718
719         /* FIXME test if destination is multicast or no destination at all FIXME */
720         if( RtspSetup( p_stream, &url ) )
721         {
722             msg_Err( p_stream, "cannot export sdp as rtsp" );
723         }
724     }
725     else if( ( url.psz_protocol && !strcasecmp( url.psz_protocol, "sap" ) ) || 
726              ( url.psz_host && !strcasecmp( url.psz_host, "sap" ) ) )
727     {
728         p_sys->b_export_sap = VLC_TRUE;
729         SapSetup( p_stream );
730     }
731     else if( url.psz_protocol && !strcasecmp( url.psz_protocol, "file" ) )
732     {
733         if( p_sys->b_export_sdp_file )
734         {
735             msg_Err( p_stream, "you can use sdp=file:// only once" );
736             return;
737         }
738         p_sys->b_export_sdp_file = VLC_TRUE;
739         psz_url = &psz_url[5];
740         if( psz_url[0] == '/' && psz_url[1] == '/' )
741             psz_url += 2;
742         p_sys->psz_sdp_file = strdup( psz_url );
743     }
744     else
745     {
746         msg_Warn( p_stream, "unknown protocol for SDP (%s)",
747                   url.psz_protocol );
748     }
749     vlc_UrlClean( &url );
750 }
751
752 /*****************************************************************************
753  * SDPGenerate
754  *****************************************************************************/
755         /* FIXME  http://www.faqs.org/rfcs/rfc2327.html
756            All text fields should be UTF-8 encoded. Use global a:charset to announce this.
757            o= - should be local username (no spaces allowed)
758            o= time should be hashed with some other value to garantue uniqueness
759            o= we need IP6 support?
760            o= don't use the localhost address. use fully qualified domain name or IP4 address
761            p= international phone number (pass via vars?)
762            c= IP6 support
763            a= recvonly (missing)
764            a= type:broadcast (missing)
765            a= charset: (normally charset should be UTF-8, this can be used to override s= and i=)
766            a= x-plgroup: (missing)
767            RTP packets need to get the correct src IP address  */
768 static char *SDPGenerate( const sout_stream_t *p_stream,
769                           const char *psz_destination, vlc_bool_t b_rtsp )
770 {
771     sout_stream_sys_t *p_sys = p_stream->p_sys;
772     int i_size;
773     char *psz_sdp, *p, ipv;
774     int i;
775
776     /* FIXME: breaks IP version check on unknown destination */
777     if( psz_destination == NULL )
778         psz_destination = "0.0.0.0";
779
780     i_size = sizeof( "v=0\r\n" ) +
781              sizeof( "o=- * * IN IP4 127.0.0.1\r\n" ) + 10 + 10 +
782              sizeof( "s=*\r\n" ) + strlen( p_sys->psz_session_name ) +
783              sizeof( "i=*\r\n" ) + strlen( p_sys->psz_session_description ) +
784              sizeof( "u=*\r\n" ) + strlen( p_sys->psz_session_url ) +
785              sizeof( "e=*\r\n" ) + strlen( p_sys->psz_session_email ) +
786              sizeof( "t=0 0\r\n" ) + /* permanent stream */ /* when scheduled from vlm, we should set this info correctly */
787              sizeof( "b=RR:0\r\n" ) +
788              sizeof( "a=tool:"PACKAGE_STRING"\r\n" ) +
789              sizeof( "c=IN IP4 */*\r\n" ) + 20 + 10 +
790              strlen( psz_destination ) ;
791     for( i = 0; i < p_sys->i_es; i++ )
792     {
793         sout_stream_id_t *id = p_sys->es[i];
794
795         i_size += strlen( "m=**d*o * RTP/AVP *\r\n" ) + 10 + 10;
796         if ( id->i_bitrate )
797         {
798             i_size += strlen( "b=AS: *\r\n") + 10;
799         }
800         if( id->psz_rtpmap )
801         {
802             i_size += strlen( "a=rtpmap:* *\r\n" ) + strlen( id->psz_rtpmap )+10;
803         }
804         if( id->psz_fmtp )
805         {
806             i_size += strlen( "a=fmtp:* *\r\n" ) + strlen( id->psz_fmtp ) + 10;
807         }
808         if( b_rtsp )
809         {
810             i_size += strlen( "a=control:*/trackID=*\r\n" ) + strlen( p_sys->psz_rtsp_control ) + 10;
811         }
812     }
813     if( p_sys->p_mux )
814     {
815         i_size += strlen( "m=video %d RTP/AVP %d\r\n" ) +10 +10;
816     }
817
818     ipv = ( strchr( psz_destination, ':' ) != NULL ) ? '6' : '4';
819
820     p = psz_sdp = malloc( i_size );
821     p += sprintf( p, "v=0\r\n" );
822     p += sprintf( p, "o=- "I64Fd" %d IN IP%c %s\r\n",
823                   p_sys->i_sdp_id, p_sys->i_sdp_version,
824                   ipv, ipv == '6' ? "::1" : "127.0.0.1" );
825     if( *p_sys->psz_session_name )
826         p += sprintf( p, "s=%s\r\n", p_sys->psz_session_name );
827     if( *p_sys->psz_session_description )
828         p += sprintf( p, "i=%s\r\n", p_sys->psz_session_description );
829     if( *p_sys->psz_session_url )
830         p += sprintf( p, "u=%s\r\n", p_sys->psz_session_url );
831     if( *p_sys->psz_session_email )
832         p += sprintf( p, "e=%s\r\n", p_sys->psz_session_email );
833
834     p += sprintf( p, "t=0 0\r\n" ); /* permanent stream */ /* when scheduled from vlm, we should set this info correctly */
835     p += sprintf( p, "a=tool:"PACKAGE_STRING"\r\n" );
836
837     p += sprintf( p, "c=IN IP%c %s", ipv, psz_destination );
838
839     if( ( ipv == 4 )
840      && net_AddressIsMulticast( (vlc_object_t *)p_stream, psz_destination ) )
841     {
842         /* Add the deprecated TTL field if it is an IPv4 multicast address */
843         p += sprintf( p, "/%d", p_sys->i_ttl ?: 1 );
844     }
845     p += sprintf( p, "\r\n" );
846
847     for( i = 0; i < p_sys->i_es; i++ )
848     {
849         sout_stream_id_t *id = p_sys->es[i];
850
851         if( id->i_cat == AUDIO_ES )
852         {
853             p += sprintf( p, "m=audio %d RTP/AVP %d\r\n",
854                           id->i_port, id->i_payload_type );
855         }
856         else if( id->i_cat == VIDEO_ES )
857         {
858             p += sprintf( p, "m=video %d RTP/AVP %d\r\n",
859                           id->i_port, id->i_payload_type );
860         }
861         else
862         {
863             continue;
864         }
865         if ( id->i_bitrate )
866         {
867             p += sprintf(p,"b=AS:%d\r\n",id->i_bitrate);
868         }
869         p += sprintf( p, "b=RR:0\r\n" );
870         if( id->psz_rtpmap )
871         {
872             p += sprintf( p, "a=rtpmap:%d %s\r\n", id->i_payload_type,
873                           id->psz_rtpmap );
874         }
875         if( id->psz_fmtp )
876         {
877             p += sprintf( p, "a=fmtp:%d %s\r\n", id->i_payload_type,
878                           id->psz_fmtp );
879         }
880         if( b_rtsp )
881         {
882             p += sprintf( p, "a=control:/trackID=%d\r\n", i );
883         }
884     }
885     if( p_sys->p_mux )
886     {
887        p += sprintf( p, "m=video %d RTP/AVP %d\r\n",
888                  p_sys->i_port, p_sys->i_payload_type );
889     }
890
891     return psz_sdp;
892 }
893
894 /*****************************************************************************
895  *
896  *****************************************************************************/
897 static int rtp_packetize_l16  ( sout_stream_t *, sout_stream_id_t *, block_t * );
898 static int rtp_packetize_l8   ( sout_stream_t *, sout_stream_id_t *, block_t * );
899 static int rtp_packetize_mpa  ( sout_stream_t *, sout_stream_id_t *, block_t * );
900 static int rtp_packetize_mpv  ( sout_stream_t *, sout_stream_id_t *, block_t * );
901 static int rtp_packetize_ac3  ( sout_stream_t *, sout_stream_id_t *, block_t * );
902 static int rtp_packetize_split( sout_stream_t *, sout_stream_id_t *, block_t * );
903 static int rtp_packetize_mp4a ( sout_stream_t *, sout_stream_id_t *, block_t * );
904 static int rtp_packetize_mp4a_latm ( sout_stream_t *, sout_stream_id_t *, block_t * );
905 static int rtp_packetize_h263 ( sout_stream_t *, sout_stream_id_t *, block_t * );
906 static int rtp_packetize_h264 ( sout_stream_t *, sout_stream_id_t *, block_t * );
907 static int rtp_packetize_amr  ( sout_stream_t *, sout_stream_id_t *, block_t * );
908
909 static void sprintf_hexa( char *s, uint8_t *p_data, int i_data )
910 {
911     static const char hex[16] = "0123456789abcdef";
912     int i;
913
914     for( i = 0; i < i_data; i++ )
915     {
916         s[2*i+0] = hex[(p_data[i]>>4)&0xf];
917         s[2*i+1] = hex[(p_data[i]   )&0xf];
918     }
919     s[2*i_data] = '\0';
920 }
921
922 static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
923 {
924     sout_instance_t   *p_sout = p_stream->p_sout;
925     sout_stream_sys_t *p_sys = p_stream->p_sys;
926     sout_stream_id_t  *id;
927     sout_access_out_t *p_access = NULL;
928     int               i_port;
929     char              *psz_sdp;
930
931     if( p_sys->p_mux != NULL )
932     {
933         sout_input_t      *p_input  = NULL;
934         if( ( p_input = sout_MuxAddStream( p_sys->p_mux, p_fmt ) ) == NULL )
935         {
936             msg_Err( p_stream, "cannot add this stream to the muxer" );
937             return NULL;
938         }
939
940         id = malloc( sizeof( sout_stream_id_t ) );
941         memset( id, 0, sizeof( sout_stream_id_t ) );
942         id->p_access    = NULL;
943         id->p_input     = p_input;
944         id->pf_packetize= NULL;
945         id->p_rtsp_url  = NULL;
946         id->i_port      = 0;
947         return id;
948     }
949
950
951     /* Choose the port */
952     i_port = 0;
953     if( p_fmt->i_cat == AUDIO_ES && p_sys->i_port_audio > 0 )
954     {
955         i_port = p_sys->i_port_audio;
956         p_sys->i_port_audio = 0;
957     }
958     else if( p_fmt->i_cat == VIDEO_ES && p_sys->i_port_video > 0 )
959     {
960         i_port = p_sys->i_port_video;
961         p_sys->i_port_video = 0;
962     }
963     while( i_port == 0 )
964     {
965         if( p_sys->i_port != p_sys->i_port_audio && p_sys->i_port != p_sys->i_port_video )
966         {
967             i_port = p_sys->i_port;
968             p_sys->i_port += 2;
969             break;
970         }
971         p_sys->i_port += 2;
972     }
973
974     if( p_sys->psz_destination )
975     {
976         char access[22];
977         char url[NI_MAXHOST + 8];
978
979         /* first try to create the access out */
980         if( p_sys->i_ttl )
981         {
982             snprintf( access, sizeof( access ), "udp{raw,rtcp,ttl=%d}",
983                       p_sys->i_ttl );
984             access[sizeof( access ) - 1] = '\0';
985         }
986         else
987             strcpy( access, "udp{raw,rtcp}" );
988
989         snprintf( url, sizeof( url ), (( p_sys->psz_destination[0] != '[' ) &&
990                  strchr( p_sys->psz_destination, ':' )) ? "[%s]:%d" : "%s:%d",
991                  p_sys->psz_destination, i_port );
992         url[sizeof( url ) - 1] = '\0';
993
994         if( ( p_access = sout_AccessOutNew( p_sout, access, url ) ) == NULL )
995         {
996             msg_Err( p_stream, "cannot create the access out for %s://%s",
997                      access, url );
998             return NULL;
999         }
1000         msg_Dbg( p_stream, "access out %s:%s", access, url );
1001     }
1002
1003     /* not create the rtp specific stuff */
1004     id = malloc( sizeof( sout_stream_id_t ) );
1005     memset( id, 0, sizeof( sout_stream_id_t ) );
1006     id->p_stream   = p_stream;
1007     id->p_access   = p_access;
1008     id->p_input    = NULL;
1009     id->psz_rtpmap = NULL;
1010     id->psz_fmtp   = NULL;
1011     id->psz_destination = p_sys->psz_destination ? strdup( p_sys->psz_destination ) : NULL;
1012     id->i_port = i_port;
1013     id->p_rtsp_url = NULL;
1014     vlc_mutex_init( p_stream, &id->lock_rtsp );
1015     id->i_rtsp_access = 0;
1016     id->rtsp_access = NULL;
1017
1018     switch( p_fmt->i_codec )
1019     {
1020         case VLC_FOURCC( 's', '1', '6', 'b' ):
1021             if( p_fmt->audio.i_channels == 1 && p_fmt->audio.i_rate == 44100 )
1022             {
1023                 id->i_payload_type = 11;
1024             }
1025             else if( p_fmt->audio.i_channels == 2 &&
1026                      p_fmt->audio.i_rate == 44100 )
1027             {
1028                 id->i_payload_type = 10;
1029             }
1030             else
1031             {
1032                 id->i_payload_type = p_sys->i_payload_type++;
1033             }
1034             id->psz_rtpmap = malloc( strlen( "L16/*/*" ) + 20+1 );
1035             sprintf( id->psz_rtpmap, "L16/%d/%d", p_fmt->audio.i_rate,
1036                      p_fmt->audio.i_channels );
1037             id->i_clock_rate = p_fmt->audio.i_rate;
1038             id->pf_packetize = rtp_packetize_l16;
1039             break;
1040         case VLC_FOURCC( 'u', '8', ' ', ' ' ):
1041             id->i_payload_type = p_sys->i_payload_type++;
1042             id->psz_rtpmap = malloc( strlen( "L8/*/*" ) + 20+1 );
1043             sprintf( id->psz_rtpmap, "L8/%d/%d", p_fmt->audio.i_rate,
1044                      p_fmt->audio.i_channels );
1045             id->i_clock_rate = p_fmt->audio.i_rate;
1046             id->pf_packetize = rtp_packetize_l8;
1047             break;
1048         case VLC_FOURCC( 'm', 'p', 'g', 'a' ):
1049             id->i_payload_type = 14;
1050             id->i_clock_rate = 90000;
1051             id->psz_rtpmap = strdup( "MPA/90000" );
1052             id->pf_packetize = rtp_packetize_mpa;
1053             break;
1054         case VLC_FOURCC( 'm', 'p', 'g', 'v' ):
1055             id->i_payload_type = 32;
1056             id->i_clock_rate = 90000;
1057             id->psz_rtpmap = strdup( "MPV/90000" );
1058             id->pf_packetize = rtp_packetize_mpv;
1059             break;
1060         case VLC_FOURCC( 'a', '5', '2', ' ' ):
1061             id->i_payload_type = p_sys->i_payload_type++;
1062             id->i_clock_rate = 90000;
1063             id->psz_rtpmap = strdup( "ac3/90000" );
1064             id->pf_packetize = rtp_packetize_ac3;
1065             break;
1066         case VLC_FOURCC( 'H', '2', '6', '3' ):
1067             id->i_payload_type = p_sys->i_payload_type++;
1068             id->i_clock_rate = 90000;
1069             id->psz_rtpmap = strdup( "H263-1998/90000" );
1070             id->pf_packetize = rtp_packetize_h263;
1071             break;
1072         case VLC_FOURCC( 'h', '2', '6', '4' ):
1073             id->i_payload_type = p_sys->i_payload_type++;
1074             id->i_clock_rate = 90000;
1075             id->psz_rtpmap = strdup( "H264/90000" );
1076             id->pf_packetize = rtp_packetize_h264;
1077             id->psz_fmtp = NULL;
1078
1079             if( p_fmt->i_extra > 0 )
1080             {
1081                 uint8_t *p_buffer = p_fmt->p_extra;
1082                 int     i_buffer = p_fmt->i_extra;
1083                 char    *p_64_sps = NULL;
1084                 char    *p_64_pps = NULL;
1085                 char    hexa[6+1];
1086
1087                 while( i_buffer > 4 && 
1088                        p_buffer[0] == 0 && p_buffer[1] == 0 &&
1089                        p_buffer[2] == 0 && p_buffer[3] == 1 )
1090                 {
1091                     const int i_nal_type = p_buffer[4]&0x1f;
1092                     int i_offset;
1093                     int i_size      = 0;
1094
1095                     msg_Dbg( p_stream, "we found a startcode for NAL with TYPE:%d", i_nal_type );
1096
1097                     i_size = i_buffer;
1098                     for( i_offset = 4; i_offset+3 < i_buffer ; i_offset++)
1099                     {
1100                         if( p_buffer[i_offset] == 0 && p_buffer[i_offset+1] == 0 && p_buffer[i_offset+2] == 0 && p_buffer[i_offset+3] == 1 )
1101                         {
1102                             /* we found another startcode */
1103                             i_size = i_offset;
1104                             break;
1105                         } 
1106                     }
1107                     if( i_nal_type == 7 )
1108                     {
1109                         p_64_sps = vlc_b64_encode_binary( &p_buffer[4], i_size - 4 );
1110                         sprintf_hexa( hexa, &p_buffer[5], 3 );
1111                     }
1112                     else if( i_nal_type == 8 )
1113                     {
1114                         p_64_pps = vlc_b64_encode_binary( &p_buffer[4], i_size - 4 );
1115                     }
1116                     i_buffer -= i_size;
1117                     p_buffer += i_size;
1118                 }
1119                 /* */
1120                 if( p_64_sps && p_64_pps )
1121                     asprintf( &id->psz_fmtp, "packetization-mode=1;profile-level-id=%s;sprop-parameter-sets=%s,%s;", hexa, p_64_sps, p_64_pps );
1122                 if( p_64_sps )
1123                     free( p_64_sps );
1124                 if( p_64_pps )
1125                     free( p_64_pps );
1126             }
1127             if( !id->psz_fmtp )
1128                 id->psz_fmtp = strdup( "packetization-mode=1" );
1129             break;
1130
1131         case VLC_FOURCC( 'm', 'p', '4', 'v' ):
1132         {
1133             char hexa[2*p_fmt->i_extra +1];
1134
1135             id->i_payload_type = p_sys->i_payload_type++;
1136             id->i_clock_rate = 90000;
1137             id->psz_rtpmap = strdup( "MP4V-ES/90000" );
1138             id->pf_packetize = rtp_packetize_split;
1139             if( p_fmt->i_extra > 0 )
1140             {
1141                 id->psz_fmtp = malloc( 100 + 2 * p_fmt->i_extra );
1142                 sprintf_hexa( hexa, p_fmt->p_extra, p_fmt->i_extra );
1143                 sprintf( id->psz_fmtp,
1144                          "profile-level-id=3; config=%s;", hexa );
1145             }
1146             break;
1147         }
1148         case VLC_FOURCC( 'm', 'p', '4', 'a' ):
1149         {
1150             id->i_payload_type = p_sys->i_payload_type++;
1151             id->i_clock_rate = p_fmt->audio.i_rate;
1152
1153             if(!p_sys->b_latm)
1154             {
1155                 char hexa[2*p_fmt->i_extra +1];
1156
1157                 id->psz_rtpmap = malloc( strlen( "mpeg4-generic/" ) + 12 );
1158                 sprintf( id->psz_rtpmap, "mpeg4-generic/%d", p_fmt->audio.i_rate );
1159                 id->pf_packetize = rtp_packetize_mp4a;
1160                 id->psz_fmtp = malloc( 200 + 2 * p_fmt->i_extra );
1161                 sprintf_hexa( hexa, p_fmt->p_extra, p_fmt->i_extra );
1162                 sprintf( id->psz_fmtp,
1163                         "streamtype=5; profile-level-id=15; mode=AAC-hbr; "
1164                         "config=%s; SizeLength=13;IndexLength=3; "
1165                         "IndexDeltaLength=3; Profile=1;", hexa );
1166             }
1167             else
1168             {
1169                 char hexa[13];
1170                 int i;
1171                 unsigned char config[6];
1172                 unsigned int aacsrates[15] = {
1173                     96000, 88200, 64000, 48000, 44100, 32000, 24000, 22050,
1174                     16000, 12000, 11025, 8000, 7350, 0, 0 };
1175
1176                 for( i = 0; i < 15; i++ )
1177                     if( p_fmt->audio.i_rate == aacsrates[i] )
1178                         break;
1179
1180                 config[0]=0x40;
1181                 config[1]=0;
1182                 config[2]=0x20|i;
1183                 config[3]=p_fmt->audio.i_channels<<4;
1184                 config[4]=0x3f;
1185                 config[5]=0xc0;
1186
1187                 asprintf( &id->psz_rtpmap, "MP4A-LATM/%d/%d",
1188                           p_fmt->audio.i_rate, p_fmt->audio.i_channels );
1189                 id->pf_packetize = rtp_packetize_mp4a_latm;
1190                 sprintf_hexa( hexa, config, 6 );
1191                 asprintf( &id->psz_fmtp, "profile-level-id=15; "
1192                           "object=2; cpresent=0; config=%s", hexa );
1193             }
1194             break;
1195         }
1196         case VLC_FOURCC( 's', 'a', 'm', 'r' ):
1197             id->i_payload_type = p_sys->i_payload_type++;
1198             id->psz_rtpmap = strdup( p_fmt->audio.i_channels == 2 ?
1199                                      "AMR/8000/2" : "AMR/8000" );
1200             id->psz_fmtp = strdup( "octet-align=1" );
1201             id->i_clock_rate = p_fmt->audio.i_rate;
1202             id->pf_packetize = rtp_packetize_amr;
1203             break; 
1204         case VLC_FOURCC( 's', 'a', 'w', 'b' ):
1205             id->i_payload_type = p_sys->i_payload_type++;
1206             id->psz_rtpmap = strdup( p_fmt->audio.i_channels == 2 ?
1207                                      "AMR-WB/16000/2" : "AMR-WB/16000" );
1208             id->psz_fmtp = strdup( "octet-align=1" );
1209             id->i_clock_rate = p_fmt->audio.i_rate;
1210             id->pf_packetize = rtp_packetize_amr;
1211             break; 
1212
1213         default:
1214             msg_Err( p_stream, "cannot add this stream (unsupported "
1215                      "codec:%4.4s)", (char*)&p_fmt->i_codec );
1216             if( p_access )
1217             {
1218                 sout_AccessOutDelete( p_access );
1219             }
1220             free( id );
1221             return NULL;
1222     }
1223     id->i_cat = p_fmt->i_cat;
1224
1225     id->ssrc[0] = rand()&0xff;
1226     id->ssrc[1] = rand()&0xff;
1227     id->ssrc[2] = rand()&0xff;
1228     id->ssrc[3] = rand()&0xff;
1229     id->i_sequence = rand()&0xffff;
1230     id->i_timestamp_start = rand()&0xffffffff;
1231     id->i_bitrate = p_fmt->i_bitrate/1000; /* Stream bitrate in kbps */
1232
1233     id->i_mtu    = config_GetInt( p_stream, "mtu" );  /* XXX beuk */
1234     if( id->i_mtu <= 16 + MTU_REDUCE )
1235     {
1236         /* better than nothing */
1237         id->i_mtu = 1500;
1238     }
1239     id->i_mtu -= MTU_REDUCE;
1240     msg_Dbg( p_stream, "maximum RTP packet size: %d bytes", id->i_mtu );
1241
1242     if( p_sys->p_rtsp_url )
1243     {
1244         char psz_urlc[strlen( p_sys->psz_rtsp_control ) + 1 + 10];
1245
1246         sprintf( psz_urlc, "%s/trackID=%d", p_sys->psz_rtsp_path, p_sys->i_es );
1247         msg_Dbg( p_stream, "rtsp: adding %s\n", psz_urlc );
1248         id->p_rtsp_url = httpd_UrlNewUnique( p_sys->p_rtsp_host, psz_urlc, NULL, NULL, NULL );
1249
1250         if( id->p_rtsp_url )
1251         {
1252             httpd_UrlCatch( id->p_rtsp_url, HTTPD_MSG_SETUP,    RtspCallbackId, (void*)id );
1253             //httpd_UrlCatch( id->p_rtsp_url, HTTPD_MSG_PLAY,     RtspCallback, (void*)p_stream );
1254             //httpd_UrlCatch( id->p_rtsp_url, HTTPD_MSG_PAUSE,    RtspCallback, (void*)p_stream );
1255         }
1256     }
1257
1258
1259     /* Update p_sys context */
1260     vlc_mutex_lock( &p_sys->lock_es );
1261     TAB_APPEND( p_sys->i_es, p_sys->es, id );
1262     vlc_mutex_unlock( &p_sys->lock_es );
1263
1264     psz_sdp = SDPGenerate( p_stream, p_sys->psz_destination, VLC_FALSE );
1265
1266     vlc_mutex_lock( &p_sys->lock_sdp );
1267     free( p_sys->psz_sdp );
1268     p_sys->psz_sdp = psz_sdp;
1269     vlc_mutex_unlock( &p_sys->lock_sdp );
1270
1271     p_sys->i_sdp_version++;
1272
1273     msg_Dbg( p_stream, "sdp=%s", p_sys->psz_sdp );
1274
1275     /* Update SDP (sap/file) */
1276     if( p_sys->b_export_sap ) SapSetup( p_stream );
1277     if( p_sys->b_export_sdp_file ) FileSetup( p_stream );
1278
1279     return id;
1280 }
1281
1282 static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
1283 {
1284     sout_stream_sys_t *p_sys = p_stream->p_sys;
1285
1286     vlc_mutex_lock( &p_sys->lock_es );
1287     TAB_REMOVE( p_sys->i_es, p_sys->es, id );
1288     vlc_mutex_unlock( &p_sys->lock_es );
1289
1290     /* Release port */
1291     if( id->i_port > 0 )
1292     {
1293         if( id->i_cat == AUDIO_ES && p_sys->i_port_audio == 0 )
1294             p_sys->i_port_audio = id->i_port;
1295         else if( id->i_cat == VIDEO_ES && p_sys->i_port_video == 0 )
1296             p_sys->i_port_video = id->i_port;
1297     }
1298
1299     if( id->p_access )
1300     {
1301         if( id->psz_rtpmap )
1302         {
1303             free( id->psz_rtpmap );
1304         }
1305         if( id->psz_fmtp )
1306         {
1307             free( id->psz_fmtp );
1308         }
1309         if( id->psz_destination )
1310             free( id->psz_destination );
1311         sout_AccessOutDelete( id->p_access );
1312     }
1313     else if( id->p_input )
1314     {
1315         sout_MuxDeleteStream( p_sys->p_mux, id->p_input );
1316     }
1317     if( id->p_rtsp_url )
1318     {
1319         httpd_UrlDelete( id->p_rtsp_url );
1320     }
1321     vlc_mutex_destroy( &id->lock_rtsp );
1322     if( id->rtsp_access ) free( id->rtsp_access );
1323
1324     /* Update SDP (sap/file) */
1325     if( p_sys->b_export_sap && !p_sys->p_mux ) SapSetup( p_stream );
1326     if( p_sys->b_export_sdp_file ) FileSetup( p_stream );
1327
1328     free( id );
1329     return VLC_SUCCESS;
1330 }
1331
1332 static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
1333                  block_t *p_buffer )
1334 {
1335     block_t *p_next;
1336
1337     if( p_stream->p_sys->p_mux )
1338     {
1339         sout_MuxSendBuffer( p_stream->p_sys->p_mux, id->p_input, p_buffer );
1340     }
1341     else
1342     {
1343         while( p_buffer )
1344         {
1345             p_next = p_buffer->p_next;
1346             if( id->pf_packetize( p_stream, id, p_buffer ) )
1347             {
1348                 break;
1349             }
1350             block_Release( p_buffer );
1351             p_buffer = p_next;
1352         }
1353     }
1354     return VLC_SUCCESS;
1355 }
1356
1357
1358 static int AccessOutGrabberWriteBuffer( sout_stream_t *p_stream,
1359                                         block_t *p_buffer )
1360 {
1361     sout_stream_sys_t *p_sys = p_stream->p_sys;
1362
1363     int64_t  i_dts = p_buffer->i_dts;
1364     uint32_t i_timestamp = i_dts * 9 / 100;
1365
1366     uint8_t         *p_data = p_buffer->p_buffer;
1367     unsigned int    i_data  = p_buffer->i_buffer;
1368     unsigned int    i_max   = p_sys->i_mtu - 12;
1369
1370     unsigned i_packet = ( p_buffer->i_buffer + i_max - 1 ) / i_max;
1371
1372     while( i_data > 0 )
1373     {
1374         unsigned int i_size;
1375
1376         /* output complete packet */
1377         if( p_sys->packet &&
1378             p_sys->packet->i_buffer + i_data > i_max )
1379         {
1380             sout_AccessOutWrite( p_sys->p_access, p_sys->packet );
1381             p_sys->packet = NULL;
1382         }
1383
1384         if( p_sys->packet == NULL )
1385         {
1386             /* allocate a new packet */
1387             p_sys->packet = block_New( p_stream, p_sys->i_mtu );
1388             p_sys->packet->p_buffer[ 0] = 0x80;
1389             p_sys->packet->p_buffer[ 1] = 0x80|p_sys->i_payload_type;
1390             p_sys->packet->p_buffer[ 2] = ( p_sys->i_sequence >> 8)&0xff;
1391             p_sys->packet->p_buffer[ 3] = ( p_sys->i_sequence     )&0xff;
1392             p_sys->packet->p_buffer[ 4] = ( i_timestamp >> 24 )&0xff;
1393             p_sys->packet->p_buffer[ 5] = ( i_timestamp >> 16 )&0xff;
1394             p_sys->packet->p_buffer[ 6] = ( i_timestamp >>  8 )&0xff;
1395             p_sys->packet->p_buffer[ 7] = ( i_timestamp       )&0xff;
1396             p_sys->packet->p_buffer[ 8] = p_sys->ssrc[0];
1397             p_sys->packet->p_buffer[ 9] = p_sys->ssrc[1];
1398             p_sys->packet->p_buffer[10] = p_sys->ssrc[2];
1399             p_sys->packet->p_buffer[11] = p_sys->ssrc[3];
1400             p_sys->packet->i_buffer = 12;
1401
1402             p_sys->packet->i_dts = i_dts;
1403             p_sys->packet->i_length = p_buffer->i_length / i_packet;
1404             i_dts += p_sys->packet->i_length;
1405
1406             p_sys->i_sequence++;
1407         }
1408
1409         i_size = __MIN( i_data,
1410                         (unsigned)(p_sys->i_mtu - p_sys->packet->i_buffer) );
1411
1412         memcpy( &p_sys->packet->p_buffer[p_sys->packet->i_buffer],
1413                 p_data, i_size );
1414
1415         p_sys->packet->i_buffer += i_size;
1416         p_data += i_size;
1417         i_data -= i_size;
1418     }
1419
1420     return VLC_SUCCESS;
1421 }
1422
1423 static int AccessOutGrabberWrite( sout_access_out_t *p_access,
1424                                   block_t *p_buffer )
1425 {
1426     sout_stream_t *p_stream = (sout_stream_t*)p_access->p_sys;
1427
1428     //fprintf( stderr, "received buffer size=%d\n", p_buffer->i_buffer );
1429     //
1430     while( p_buffer )
1431     {
1432         block_t *p_next;
1433
1434         AccessOutGrabberWriteBuffer( p_stream, p_buffer );
1435
1436         p_next = p_buffer->p_next;
1437         block_Release( p_buffer );
1438         p_buffer = p_next;
1439     }
1440
1441     return VLC_SUCCESS;
1442 }
1443
1444 /****************************************************************************
1445  * SAP:
1446  ****************************************************************************/
1447 static int SapSetup( sout_stream_t *p_stream )
1448 {
1449     sout_stream_sys_t *p_sys = p_stream->p_sys;
1450     sout_instance_t   *p_sout = p_stream->p_sout;
1451     announce_method_t *p_method = sout_SAPMethod();
1452
1453     /* Remove the previous session */
1454     if( p_sys->p_session != NULL)
1455     {
1456         sout_AnnounceUnRegister( p_sout, p_sys->p_session);
1457         sout_AnnounceSessionDestroy( p_sys->p_session );
1458         p_sys->p_session = NULL;
1459     }
1460
1461     if( ( p_sys->i_es > 0 || p_sys->p_mux ) && p_sys->psz_sdp && *p_sys->psz_sdp )
1462     {
1463         p_sys->p_session = sout_AnnounceRegisterSDP( p_sout, SOUT_CFG_PREFIX,
1464                                                      p_sys->psz_sdp,
1465                                                      p_sys->psz_destination,
1466                                                      p_method );
1467     }
1468
1469     sout_MethodRelease( p_method );
1470     return VLC_SUCCESS;
1471 }
1472
1473 /****************************************************************************
1474 * File:
1475 ****************************************************************************/
1476 static int FileSetup( sout_stream_t *p_stream )
1477 {
1478     sout_stream_sys_t *p_sys = p_stream->p_sys;
1479     FILE            *f;
1480
1481     if( ( f = utf8_fopen( p_sys->psz_sdp_file, "wt" ) ) == NULL )
1482     {
1483         msg_Err( p_stream, "cannot open file '%s' (%s)",
1484                  p_sys->psz_sdp_file, strerror(errno) );
1485         return VLC_EGENERIC;
1486     }
1487
1488     fprintf( f, "%s", p_sys->psz_sdp );
1489     fclose( f );
1490
1491     return VLC_SUCCESS;
1492 }
1493
1494 /****************************************************************************
1495  * HTTP:
1496  ****************************************************************************/
1497 static int  HttpCallback( httpd_file_sys_t *p_args,
1498                           httpd_file_t *, uint8_t *p_request,
1499                           uint8_t **pp_data, int *pi_data );
1500
1501 static int HttpSetup( sout_stream_t *p_stream, vlc_url_t *url)
1502 {
1503     sout_stream_sys_t *p_sys = p_stream->p_sys;
1504
1505     p_sys->p_httpd_host = httpd_HostNew( VLC_OBJECT(p_stream), url->psz_host, url->i_port > 0 ? url->i_port : 80 );
1506     if( p_sys->p_httpd_host )
1507     {
1508         p_sys->p_httpd_file = httpd_FileNew( p_sys->p_httpd_host,
1509                                              url->psz_path ? url->psz_path : "/",
1510                                              "application/sdp",
1511                                              NULL, NULL, NULL,
1512                                              HttpCallback, (void*)p_sys );
1513     }
1514     if( p_sys->p_httpd_file == NULL )
1515     {
1516         return VLC_EGENERIC;
1517     }
1518     return VLC_SUCCESS;
1519 }
1520
1521 static int  HttpCallback( httpd_file_sys_t *p_args,
1522                           httpd_file_t *f, uint8_t *p_request,
1523                           uint8_t **pp_data, int *pi_data )
1524 {
1525     sout_stream_sys_t *p_sys = (sout_stream_sys_t*)p_args;
1526
1527     vlc_mutex_lock( &p_sys->lock_sdp );
1528     if( p_sys->psz_sdp && *p_sys->psz_sdp )
1529     {
1530         *pi_data = strlen( p_sys->psz_sdp );
1531         *pp_data = malloc( *pi_data );
1532         memcpy( *pp_data, p_sys->psz_sdp, *pi_data );
1533     }
1534     else
1535     {
1536         *pp_data = NULL;
1537         *pi_data = 0;
1538     }
1539     vlc_mutex_unlock( &p_sys->lock_sdp );
1540
1541     return VLC_SUCCESS;
1542 }
1543
1544 /****************************************************************************
1545  * RTSP:
1546  ****************************************************************************/
1547 static rtsp_client_t *RtspClientNew( sout_stream_t *p_stream, const char *psz_session )
1548 {
1549     rtsp_client_t *rtsp = malloc( sizeof( rtsp_client_t ));
1550
1551     rtsp->psz_session = strdup( psz_session );
1552     rtsp->i_last = 0;
1553     rtsp->b_playing = VLC_FALSE;
1554     rtsp->i_id = 0;
1555     rtsp->id = NULL;
1556     rtsp->i_access = 0;
1557     rtsp->access = NULL;
1558
1559     TAB_APPEND( p_stream->p_sys->i_rtsp, p_stream->p_sys->rtsp, rtsp );
1560
1561     return rtsp;
1562 }
1563 static rtsp_client_t *RtspClientGet( sout_stream_t *p_stream, const char *psz_session )
1564 {
1565     int i;
1566
1567     if( !psz_session ) return NULL;
1568
1569     for( i = 0; i < p_stream->p_sys->i_rtsp; i++ )
1570     {
1571         if( !strcmp( p_stream->p_sys->rtsp[i]->psz_session, psz_session ) )
1572         {
1573             return p_stream->p_sys->rtsp[i];
1574         }
1575     }
1576     return NULL;
1577 }
1578
1579 static void RtspClientDel( sout_stream_t *p_stream, rtsp_client_t *rtsp )
1580 {
1581     int i;
1582     TAB_REMOVE( p_stream->p_sys->i_rtsp, p_stream->p_sys->rtsp, rtsp );
1583
1584     for( i = 0; i < rtsp->i_access; i++ )
1585     {
1586         sout_AccessOutDelete( rtsp->access[i] );
1587     }
1588     if( rtsp->id )     free( rtsp->id );
1589     if( rtsp->access ) free( rtsp->access );
1590
1591     free( rtsp->psz_session );
1592     free( rtsp );
1593 }
1594
1595 static int RtspSetup( sout_stream_t *p_stream, vlc_url_t *url )
1596 {
1597     sout_stream_sys_t *p_sys = p_stream->p_sys;
1598
1599     msg_Dbg( p_stream, "rtsp setup: %s : %d / %s\n", url->psz_host, url->i_port, url->psz_path );
1600
1601     p_sys->p_rtsp_host = httpd_HostNew( VLC_OBJECT(p_stream), url->psz_host, url->i_port > 0 ? url->i_port : 554 );
1602     if( p_sys->p_rtsp_host == NULL )
1603     {
1604         return VLC_EGENERIC;
1605     }
1606
1607     p_sys->psz_rtsp_path = strdup( url->psz_path ? url->psz_path : "/" );
1608     p_sys->psz_rtsp_control = malloc (strlen( url->psz_host ) + 20 + strlen( p_sys->psz_rtsp_path ) + 1 );
1609     sprintf( p_sys->psz_rtsp_control, "rtsp://%s:%d%s",
1610              url->psz_host,  url->i_port > 0 ? url->i_port : 554, p_sys->psz_rtsp_path );
1611
1612     p_sys->p_rtsp_url = httpd_UrlNewUnique( p_sys->p_rtsp_host, p_sys->psz_rtsp_path, NULL, NULL, NULL );
1613     if( p_sys->p_rtsp_url == 0 )
1614     {
1615         return VLC_EGENERIC;
1616     }
1617     httpd_UrlCatch( p_sys->p_rtsp_url, HTTPD_MSG_DESCRIBE, RtspCallback, (void*)p_stream );
1618     httpd_UrlCatch( p_sys->p_rtsp_url, HTTPD_MSG_PLAY,     RtspCallback, (void*)p_stream );
1619     httpd_UrlCatch( p_sys->p_rtsp_url, HTTPD_MSG_PAUSE,    RtspCallback, (void*)p_stream );
1620     httpd_UrlCatch( p_sys->p_rtsp_url, HTTPD_MSG_TEARDOWN, RtspCallback, (void*)p_stream );
1621
1622     return VLC_SUCCESS;
1623 }
1624
1625 static int  RtspCallback( httpd_callback_sys_t *p_args,
1626                           httpd_client_t *cl,
1627                           httpd_message_t *answer, httpd_message_t *query )
1628 {
1629     sout_stream_t *p_stream = (sout_stream_t*)p_args;
1630     sout_stream_sys_t *p_sys = p_stream->p_sys;
1631     char *psz_destination = p_sys->psz_destination;
1632     const char *psz_session = NULL;
1633     const char *psz_cseq = NULL;
1634     int i_cseq = 0;
1635
1636     if( answer == NULL || query == NULL )
1637     {
1638         return VLC_SUCCESS;
1639     }
1640     //fprintf( stderr, "RtspCallback query: type=%d\n", query->i_type );
1641
1642     answer->i_proto = HTTPD_PROTO_RTSP;
1643     answer->i_version= query->i_version;
1644     answer->i_type   = HTTPD_MSG_ANSWER;
1645
1646     switch( query->i_type )
1647     {
1648         case HTTPD_MSG_DESCRIBE:
1649         {
1650             char *psz_sdp = SDPGenerate( p_stream, psz_destination ? psz_destination : "0.0.0.0", VLC_TRUE );
1651
1652             answer->i_status = 200;
1653             answer->psz_status = strdup( "OK" );
1654             httpd_MsgAdd( answer, "Content-type",  "%s", "application/sdp" );
1655             httpd_MsgAdd( answer, "Content-Base",  "%s", p_sys->psz_rtsp_control );
1656             answer->p_body = (uint8_t *)psz_sdp;
1657             answer->i_body = strlen( psz_sdp );
1658             break;
1659         }
1660
1661         case HTTPD_MSG_PLAY:
1662         {
1663             rtsp_client_t *rtsp;
1664             /* for now only multicast so easy */
1665             answer->i_status = 200;
1666             answer->psz_status = strdup( "OK" );
1667             answer->i_body = 0;
1668             answer->p_body = NULL;
1669
1670             psz_session = httpd_MsgGet( query, "Session" );
1671             rtsp = RtspClientGet( p_stream, psz_session );
1672             if( rtsp && !rtsp->b_playing )
1673             {
1674                 int i_id;
1675                 /* FIXME */
1676                 rtsp->b_playing = VLC_TRUE;
1677
1678                 vlc_mutex_lock( &p_sys->lock_es );
1679                 for( i_id = 0; i_id < rtsp->i_id; i_id++ )
1680                 {
1681                     sout_stream_id_t *id = rtsp->id[i_id];
1682                     int i;
1683
1684                     for( i = 0; i < p_sys->i_es; i++ )
1685                     {
1686                         if( id == p_sys->es[i] )
1687                             break;
1688                     }
1689                     if( i >= p_sys->i_es ) continue;
1690
1691                     vlc_mutex_lock( &id->lock_rtsp );
1692                     TAB_APPEND( id->i_rtsp_access, id->rtsp_access, rtsp->access[i_id] );
1693                     vlc_mutex_unlock( &id->lock_rtsp );
1694                 }
1695                 vlc_mutex_unlock( &p_sys->lock_es );
1696             }
1697             break;
1698         }
1699         case HTTPD_MSG_PAUSE:
1700             /* FIXME */
1701             return VLC_EGENERIC;
1702         case HTTPD_MSG_TEARDOWN:
1703         {
1704             rtsp_client_t *rtsp;
1705
1706             /* for now only multicast so easy again */
1707             answer->i_status = 200;
1708             answer->psz_status = strdup( "OK" );
1709             answer->i_body = 0;
1710             answer->p_body = NULL;
1711
1712             psz_session = httpd_MsgGet( query, "Session" );
1713             rtsp = RtspClientGet( p_stream, psz_session );
1714             if( rtsp )
1715             {
1716                 int i_id;
1717
1718                 vlc_mutex_lock( &p_sys->lock_es );
1719                 for( i_id = 0; i_id < rtsp->i_id; i_id++ )
1720                 {
1721                     sout_stream_id_t *id = rtsp->id[i_id];
1722                     int i;
1723
1724                     for( i = 0; i < p_sys->i_es; i++ )
1725                     {
1726                         if( id == p_sys->es[i] )
1727                             break;
1728                     }
1729                     if( i >= p_sys->i_es ) continue;
1730
1731                     vlc_mutex_lock( &id->lock_rtsp );
1732                     TAB_REMOVE( id->i_rtsp_access, id->rtsp_access, rtsp->access[i_id] );
1733                     vlc_mutex_unlock( &id->lock_rtsp );
1734                 }
1735                 vlc_mutex_unlock( &p_sys->lock_es );
1736
1737                 RtspClientDel( p_stream, rtsp );
1738             }
1739             break;
1740         }
1741
1742         default:
1743             return VLC_EGENERIC;
1744     }
1745     httpd_MsgAdd( answer, "Server", PACKAGE_STRING );
1746     httpd_MsgAdd( answer, "Content-Length", "%d", answer->i_body );
1747     psz_cseq = httpd_MsgGet( query, "Cseq" );
1748     if( psz_cseq )
1749         i_cseq = atoi( psz_cseq );
1750     else
1751         i_cseq = 0;
1752     httpd_MsgAdd( answer, "Cseq", "%d", i_cseq );
1753     httpd_MsgAdd( answer, "Cache-Control", "%s", "no-cache" );
1754
1755     if( psz_session )
1756         httpd_MsgAdd( answer, "Session", "%s;timeout=5", psz_session );
1757     return VLC_SUCCESS;
1758 }
1759
1760 static int RtspCallbackId( httpd_callback_sys_t *p_args,
1761                           httpd_client_t *cl,
1762                           httpd_message_t *answer, httpd_message_t *query )
1763 {
1764     sout_stream_id_t *id = (sout_stream_id_t*)p_args;
1765     sout_stream_t    *p_stream = id->p_stream;
1766     sout_stream_sys_t *p_sys = p_stream->p_sys;
1767     char psz_session_init[100];
1768     const char *psz_session = NULL;
1769     const char *psz_cseq = NULL;
1770     int  i_cseq = 0;
1771
1772
1773     if( answer == NULL || query == NULL )
1774         return VLC_SUCCESS;
1775     //fprintf( stderr, "RtspCallback query: type=%d\n", query->i_type );
1776
1777     /* */
1778     snprintf( psz_session_init, sizeof(psz_session_init), "%d", rand() );
1779
1780     /* */
1781     answer->i_proto = HTTPD_PROTO_RTSP;
1782     answer->i_version= query->i_version;
1783     answer->i_type   = HTTPD_MSG_ANSWER;
1784
1785     switch( query->i_type )
1786     {
1787         case HTTPD_MSG_SETUP:
1788         {
1789             const char *psz_transport = httpd_MsgGet( query, "Transport" );
1790
1791             //fprintf( stderr, "HTTPD_MSG_SETUP: transport=%s\n", psz_transport );
1792
1793             if( strstr( psz_transport, "multicast" ) && id->psz_destination )
1794             {
1795                 //fprintf( stderr, "HTTPD_MSG_SETUP: multicast\n" );
1796                 answer->i_status = 200;
1797                 answer->psz_status = strdup( "OK" );
1798                 answer->i_body = 0;
1799                 answer->p_body = NULL;
1800
1801                 psz_session = httpd_MsgGet( query, "Session" );
1802                 if( !psz_session )
1803                     psz_session = psz_session_init;
1804
1805                 httpd_MsgAdd( answer, "Transport",
1806                               "RTP/AVP/UDP;destination=%s;port=%d-%d;ttl=%d",
1807                               id->psz_destination, id->i_port,id->i_port+1,
1808                               p_sys->i_ttl > 0 ? p_sys->i_ttl : 1);
1809             }
1810             else if( strstr( psz_transport, "unicast" ) && strstr( psz_transport, "client_port=" ) )
1811             {
1812                 int  i_port = atoi( strstr( psz_transport, "client_port=" ) + strlen("client_port=") );
1813                 char ip[NI_MAXNUMERICHOST], psz_access[22], psz_url[NI_MAXNUMERICHOST + 8];
1814
1815                 sout_access_out_t *p_access;
1816
1817                 rtsp_client_t *rtsp = NULL;
1818
1819                 if( httpd_ClientIP( cl, ip ) == NULL )
1820                 {
1821                     answer->i_status = 500;
1822                     answer->psz_status = strdup( "Internal server error" );
1823                     answer->i_body = 0;
1824                     answer->p_body = NULL;
1825                     break;
1826                 }
1827
1828                 //fprintf( stderr, "HTTPD_MSG_SETUP: unicast ip=%s port=%d\n", ip, i_port );
1829
1830                 psz_session = httpd_MsgGet( query, "Session" );
1831                 if( !psz_session )
1832                 {
1833                     psz_session = psz_session_init;
1834                     rtsp = RtspClientNew( p_stream, psz_session_init );
1835                 }
1836                 else
1837                 {
1838                     rtsp = RtspClientGet( p_stream, psz_session );
1839                     if( rtsp == NULL )
1840                     {
1841                         answer->i_status = 454;
1842                         answer->psz_status = strdup( "Unknown session id" );
1843                         answer->i_body = 0;
1844                         answer->p_body = NULL;
1845                         break;
1846                     }
1847                 }
1848
1849                 /* first try to create the access out */
1850                 if( p_sys->i_ttl )
1851                     snprintf( psz_access, sizeof( psz_access ),
1852                               "udp{raw,rtcp,ttl=%d}", p_sys->i_ttl );
1853                 else
1854                     strcpy( psz_access, "udp{raw,rtcp}" );
1855
1856                 snprintf( psz_url, sizeof( psz_url ),
1857                          ( strchr( ip, ':' ) != NULL ) ? "[%s]:%d" : "%s:%d",
1858                          ip, i_port );
1859
1860                 if( ( p_access = sout_AccessOutNew( p_stream->p_sout, psz_access, psz_url ) ) == NULL )
1861                 {
1862                     msg_Err( p_stream, "cannot create the access out for %s://%s",
1863                              psz_access, psz_url );
1864                     answer->i_status = 500;
1865                     answer->psz_status = strdup( "Internal server error" );
1866                     answer->i_body = 0;
1867                     answer->p_body = NULL;
1868                     break;
1869                 }
1870
1871                 TAB_APPEND( rtsp->i_id, rtsp->id, id );
1872                 TAB_APPEND( rtsp->i_access, rtsp->access, p_access );
1873
1874                 answer->i_status = 200;
1875                 answer->psz_status = strdup( "OK" );
1876                 answer->i_body = 0;
1877                 answer->p_body = NULL;
1878
1879                 httpd_MsgAdd( answer, "Transport",
1880                               "RTP/AVP/UDP;client_port=%d-%d", i_port, i_port + 1 );
1881             }
1882             else /* TODO  strstr( psz_transport, "interleaved" ) ) */
1883             {
1884                 answer->i_status = 461;
1885                 answer->psz_status = strdup( "Unsupported Transport" );
1886                 answer->i_body = 0;
1887                 answer->p_body = NULL;
1888             }
1889             break;
1890         }
1891
1892         default:
1893             return VLC_EGENERIC;
1894     }
1895     httpd_MsgAdd( answer, "Server", "VLC Server" );
1896     httpd_MsgAdd( answer, "Content-Length", "%d", answer->i_body );
1897     psz_cseq = httpd_MsgGet( query, "Cseq" );
1898     if( psz_cseq )
1899         i_cseq = atoi( psz_cseq );
1900     else
1901         i_cseq = 0;
1902     httpd_MsgAdd( answer, "Cseq", "%d", i_cseq );
1903     httpd_MsgAdd( answer, "Cache-Control", "%s", "no-cache" );
1904
1905     if( psz_session )
1906         httpd_MsgAdd( answer, "Session", "%s"/*;timeout=5*/, psz_session );
1907     return VLC_SUCCESS;
1908 }
1909
1910 /****************************************************************************
1911  * rtp_packetize_*:
1912  ****************************************************************************/
1913 static void rtp_packetize_common( sout_stream_id_t *id, block_t *out,
1914                                   int b_marker, int64_t i_pts )
1915 {
1916     uint32_t i_timestamp = i_pts * (int64_t)id->i_clock_rate / I64C(1000000);
1917
1918     out->p_buffer[0] = 0x80;
1919     out->p_buffer[1] = (b_marker?0x80:0x00)|id->i_payload_type;
1920     out->p_buffer[2] = ( id->i_sequence >> 8)&0xff;
1921     out->p_buffer[3] = ( id->i_sequence     )&0xff;
1922     out->p_buffer[4] = ( i_timestamp >> 24 )&0xff;
1923     out->p_buffer[5] = ( i_timestamp >> 16 )&0xff;
1924     out->p_buffer[6] = ( i_timestamp >>  8 )&0xff;
1925     out->p_buffer[7] = ( i_timestamp       )&0xff;
1926
1927     out->p_buffer[ 8] = id->ssrc[0];
1928     out->p_buffer[ 9] = id->ssrc[1];
1929     out->p_buffer[10] = id->ssrc[2];
1930     out->p_buffer[11] = id->ssrc[3];
1931
1932     out->i_buffer = 12;
1933     id->i_sequence++;
1934 }
1935
1936 static void rtp_packetize_send( sout_stream_id_t *id, block_t *out )
1937 {
1938     int i;
1939     vlc_mutex_lock( &id->lock_rtsp );
1940     for( i = 0; i < id->i_rtsp_access; i++ )
1941     {
1942         sout_AccessOutWrite( id->rtsp_access[i], block_Duplicate( out ) );
1943     }
1944     vlc_mutex_unlock( &id->lock_rtsp );
1945
1946     if( id->p_access )
1947     {
1948         sout_AccessOutWrite( id->p_access, out );
1949     }
1950     else
1951     {
1952         block_Release( out );
1953     }
1954 }
1955
1956 static int rtp_packetize_mpa( sout_stream_t *p_stream, sout_stream_id_t *id,
1957                               block_t *in )
1958 {
1959     int     i_max   = id->i_mtu - 12 - 4; /* payload max in one packet */
1960     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
1961
1962     uint8_t *p_data = in->p_buffer;
1963     int     i_data  = in->i_buffer;
1964     int     i;
1965
1966     for( i = 0; i < i_count; i++ )
1967     {
1968         int           i_payload = __MIN( i_max, i_data );
1969         block_t *out = block_New( p_stream, 16 + i_payload );
1970
1971         /* rtp common header */
1972         rtp_packetize_common( id, out, (i == i_count - 1)?1:0, in->i_pts );
1973         /* mbz set to 0 */
1974         out->p_buffer[12] = 0;
1975         out->p_buffer[13] = 0;
1976         /* fragment offset in the current frame */
1977         out->p_buffer[14] = ( (i*i_max) >> 8 )&0xff;
1978         out->p_buffer[15] = ( (i*i_max)      )&0xff;
1979         memcpy( &out->p_buffer[16], p_data, i_payload );
1980
1981         out->i_buffer   = 16 + i_payload;
1982         out->i_dts    = in->i_dts + i * in->i_length / i_count;
1983         out->i_length = in->i_length / i_count;
1984
1985         rtp_packetize_send( id, out );
1986
1987         p_data += i_payload;
1988         i_data -= i_payload;
1989     }
1990
1991     return VLC_SUCCESS;
1992 }
1993
1994 /* rfc2250 */
1995 static int rtp_packetize_mpv( sout_stream_t *p_stream, sout_stream_id_t *id,
1996                               block_t *in )
1997 {
1998     int     i_max   = id->i_mtu - 12 - 4; /* payload max in one packet */
1999     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
2000
2001     uint8_t *p_data = in->p_buffer;
2002     int     i_data  = in->i_buffer;
2003     int     i;
2004     int     b_sequence_start = 0;
2005     int     i_temporal_ref = 0;
2006     int     i_picture_coding_type = 0;
2007     int     i_fbv = 0, i_bfc = 0, i_ffv = 0, i_ffc = 0;
2008     int     b_start_slice = 0;
2009
2010     /* preparse this packet to get some info */
2011     if( in->i_buffer > 4 )
2012     {
2013         uint8_t *p = p_data;
2014         int      i_rest = in->i_buffer;
2015
2016         for( ;; )
2017         {
2018             while( i_rest > 4 &&
2019                    ( p[0] != 0x00 || p[1] != 0x00 || p[2] != 0x01 ) )
2020             {
2021                 p++;
2022                 i_rest--;
2023             }
2024             if( i_rest <= 4 )
2025             {
2026                 break;
2027             }
2028             p += 3;
2029             i_rest -= 4;
2030
2031             if( *p == 0xb3 )
2032             {
2033                 /* sequence start code */
2034                 b_sequence_start = 1;
2035             }
2036             else if( *p == 0x00 && i_rest >= 4 )
2037             {
2038                 /* picture */
2039                 i_temporal_ref = ( p[1] << 2) |((p[2]>>6)&0x03);
2040                 i_picture_coding_type = (p[2] >> 3)&0x07;
2041
2042                 if( i_rest >= 4 && ( i_picture_coding_type == 2 ||
2043                                     i_picture_coding_type == 3 ) )
2044                 {
2045                     i_ffv = (p[3] >> 2)&0x01;
2046                     i_ffc = ((p[3]&0x03) << 1)|((p[4]>>7)&0x01);
2047                     if( i_rest > 4 && i_picture_coding_type == 3 )
2048                     {
2049                         i_fbv = (p[4]>>6)&0x01;
2050                         i_bfc = (p[4]>>3)&0x07;
2051                     }
2052                 }
2053             }
2054             else if( *p <= 0xaf )
2055             {
2056                 b_start_slice = 1;
2057             }
2058         }
2059     }
2060
2061     for( i = 0; i < i_count; i++ )
2062     {
2063         int           i_payload = __MIN( i_max, i_data );
2064         block_t *out = block_New( p_stream,
2065                                              16 + i_payload );
2066         uint32_t      h = ( i_temporal_ref << 16 )|
2067                           ( b_sequence_start << 13 )|
2068                           ( b_start_slice << 12 )|
2069                           ( i == i_count - 1 ? 1 << 11 : 0 )|
2070                           ( i_picture_coding_type << 8 )|
2071                           ( i_fbv << 7 )|( i_bfc << 4 )|( i_ffv << 3 )|i_ffc;
2072
2073         /* rtp common header */
2074         rtp_packetize_common( id, out, (i == i_count - 1)?1:0,
2075                               in->i_pts > 0 ? in->i_pts : in->i_dts );
2076
2077         /* 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 */
2078         out->p_buffer[12] = ( h >> 24 )&0xff;
2079         out->p_buffer[13] = ( h >> 16 )&0xff;
2080         out->p_buffer[14] = ( h >>  8 )&0xff;
2081         out->p_buffer[15] = ( h       )&0xff;
2082
2083         memcpy( &out->p_buffer[16], p_data, i_payload );
2084
2085         out->i_buffer   = 16 + i_payload;
2086         out->i_dts    = in->i_dts + i * in->i_length / i_count;
2087         out->i_length = in->i_length / i_count;
2088
2089         rtp_packetize_send( id, out );
2090
2091         p_data += i_payload;
2092         i_data -= i_payload;
2093     }
2094
2095     return VLC_SUCCESS;
2096 }
2097
2098 static int rtp_packetize_ac3( sout_stream_t *p_stream, sout_stream_id_t *id,
2099                               block_t *in )
2100 {
2101     int     i_max   = id->i_mtu - 12 - 2; /* payload max in one packet */
2102     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
2103
2104     uint8_t *p_data = in->p_buffer;
2105     int     i_data  = in->i_buffer;
2106     int     i;
2107
2108     for( i = 0; i < i_count; i++ )
2109     {
2110         int           i_payload = __MIN( i_max, i_data );
2111         block_t *out = block_New( p_stream, 14 + i_payload );
2112
2113         /* rtp common header */
2114         rtp_packetize_common( id, out, (i == i_count - 1)?1:0, in->i_pts );
2115         /* unit count */
2116         out->p_buffer[12] = 1;
2117         /* unit header */
2118         out->p_buffer[13] = 0x00;
2119         /* data */
2120         memcpy( &out->p_buffer[14], p_data, i_payload );
2121
2122         out->i_buffer   = 14 + i_payload;
2123         out->i_dts    = in->i_dts + i * in->i_length / i_count;
2124         out->i_length = in->i_length / i_count;
2125
2126         rtp_packetize_send( id, out );
2127
2128         p_data += i_payload;
2129         i_data -= i_payload;
2130     }
2131
2132     return VLC_SUCCESS;
2133 }
2134
2135 static int rtp_packetize_split( sout_stream_t *p_stream, sout_stream_id_t *id,
2136                                 block_t *in )
2137 {
2138     int     i_max   = id->i_mtu - 12; /* payload max in one packet */
2139     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
2140
2141     uint8_t *p_data = in->p_buffer;
2142     int     i_data  = in->i_buffer;
2143     int     i;
2144
2145     for( i = 0; i < i_count; i++ )
2146     {
2147         int           i_payload = __MIN( i_max, i_data );
2148         block_t *out = block_New( p_stream, 12 + i_payload );
2149
2150         /* rtp common header */
2151         rtp_packetize_common( id, out, ((i == i_count - 1)?1:0),
2152                               (in->i_pts > 0 ? in->i_pts : in->i_dts) );
2153         memcpy( &out->p_buffer[12], p_data, i_payload );
2154
2155         out->i_buffer   = 12 + i_payload;
2156         out->i_dts    = in->i_dts + i * in->i_length / i_count;
2157         out->i_length = in->i_length / i_count;
2158
2159         rtp_packetize_send( id, out );
2160
2161         p_data += i_payload;
2162         i_data -= i_payload;
2163     }
2164
2165     return VLC_SUCCESS;
2166 }
2167
2168 /* rfc3016 */
2169 static int rtp_packetize_mp4a_latm( sout_stream_t *p_stream, sout_stream_id_t *id,
2170                                 block_t *in )
2171 {
2172     int     i_max   = id->i_mtu - 14;              /* payload max in one packet */
2173     int     latmhdrsize = in->i_buffer / 0xff + 1;
2174     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
2175
2176     uint8_t *p_data = in->p_buffer, *p_header = NULL;
2177     int     i_data  = in->i_buffer;
2178     int     i;
2179
2180     for( i = 0; i < i_count; i++ )
2181     {
2182         int     i_payload = __MIN( i_max, i_data );
2183         block_t *out;
2184
2185         if( i != 0 )
2186             latmhdrsize = 0;
2187         out = block_New( p_stream, 12 + latmhdrsize + i_payload );
2188
2189         /* rtp common header */
2190         rtp_packetize_common( id, out, ((i == i_count - 1) ? 1 : 0),
2191                               (in->i_pts > 0 ? in->i_pts : in->i_dts) );
2192
2193         if( i == 0 )
2194         {
2195             int tmp = in->i_buffer;
2196
2197             p_header=out->p_buffer+12;
2198             while( tmp > 0xfe )
2199             {
2200                 *p_header = 0xff;
2201                 p_header++;
2202                 tmp -= 0xff;
2203             }
2204             *p_header = tmp;
2205         }
2206
2207         memcpy( &out->p_buffer[12+latmhdrsize], p_data, i_payload );
2208
2209         out->i_buffer   = 12 + latmhdrsize + i_payload;
2210         out->i_dts    = in->i_dts + i * in->i_length / i_count;
2211         out->i_length = in->i_length / i_count;
2212
2213         rtp_packetize_send( id, out );
2214
2215         p_data += i_payload;
2216         i_data -= i_payload;
2217     }
2218
2219     return VLC_SUCCESS;
2220 }
2221
2222 static int rtp_packetize_l16( sout_stream_t *p_stream, sout_stream_id_t *id,
2223                               block_t *in )
2224 {
2225     int     i_max   = id->i_mtu - 12; /* payload max in one packet */
2226     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
2227
2228     uint8_t *p_data = in->p_buffer;
2229     int     i_data  = in->i_buffer;
2230     int     i_packet = 0;
2231
2232     while( i_data > 0 )
2233     {
2234         int           i_payload = (__MIN( i_max, i_data )/4)*4;
2235         block_t *out = block_New( p_stream, 12 + i_payload );
2236
2237         /* rtp common header */
2238         rtp_packetize_common( id, out, 0,
2239                               (in->i_pts > 0 ? in->i_pts : in->i_dts) );
2240         memcpy( &out->p_buffer[12], p_data, i_payload );
2241
2242         out->i_buffer   = 12 + i_payload;
2243         out->i_dts    = in->i_dts + i_packet * in->i_length / i_count;
2244         out->i_length = in->i_length / i_count;
2245
2246         rtp_packetize_send( id, out );
2247
2248         p_data += i_payload;
2249         i_data -= i_payload;
2250         i_packet++;
2251     }
2252
2253     return VLC_SUCCESS;
2254 }
2255
2256 static int rtp_packetize_l8( sout_stream_t *p_stream, sout_stream_id_t *id,
2257                              block_t *in )
2258 {
2259     int     i_max   = id->i_mtu - 12; /* payload max in one packet */
2260     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
2261
2262     uint8_t *p_data = in->p_buffer;
2263     int     i_data  = in->i_buffer;
2264     int     i_packet = 0;
2265
2266     while( i_data > 0 )
2267     {
2268         int           i_payload = (__MIN( i_max, i_data )/2)*2;
2269         block_t *out = block_New( p_stream, 12 + i_payload );
2270
2271         /* rtp common header */
2272         rtp_packetize_common( id, out, 0,
2273                               (in->i_pts > 0 ? in->i_pts : in->i_dts) );
2274         memcpy( &out->p_buffer[12], p_data, i_payload );
2275
2276         out->i_buffer   = 12 + i_payload;
2277         out->i_dts    = in->i_dts + i_packet * in->i_length / i_count;
2278         out->i_length = in->i_length / i_count;
2279
2280         rtp_packetize_send( id, out );
2281
2282         p_data += i_payload;
2283         i_data -= i_payload;
2284         i_packet++;
2285     }
2286
2287     return VLC_SUCCESS;
2288 }
2289 static int rtp_packetize_mp4a( sout_stream_t *p_stream, sout_stream_id_t *id,
2290                                block_t *in )
2291 {
2292     int     i_max   = id->i_mtu - 16; /* payload max in one packet */
2293     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
2294
2295     uint8_t *p_data = in->p_buffer;
2296     int     i_data  = in->i_buffer;
2297     int     i;
2298
2299     for( i = 0; i < i_count; i++ )
2300     {
2301         int           i_payload = __MIN( i_max, i_data );
2302         block_t *out = block_New( p_stream, 16 + i_payload );
2303
2304         /* rtp common header */
2305         rtp_packetize_common( id, out, ((i == i_count - 1)?1:0),
2306                               (in->i_pts > 0 ? in->i_pts : in->i_dts) );
2307         /* AU headers */
2308         /* AU headers length (bits) */
2309         out->p_buffer[12] = 0;
2310         out->p_buffer[13] = 2*8;
2311         /* for each AU length 13 bits + idx 3bits, */
2312         out->p_buffer[14] = ( in->i_buffer >> 5 )&0xff;
2313         out->p_buffer[15] = ( (in->i_buffer&0xff)<<3 )|0;
2314
2315         memcpy( &out->p_buffer[16], p_data, i_payload );
2316
2317         out->i_buffer   = 16 + i_payload;
2318         out->i_dts    = in->i_dts + i * in->i_length / i_count;
2319         out->i_length = in->i_length / i_count;
2320
2321         rtp_packetize_send( id, out );
2322
2323         p_data += i_payload;
2324         i_data -= i_payload;
2325     }
2326
2327     return VLC_SUCCESS;
2328 }
2329
2330
2331 /* rfc2429 */
2332 #define RTP_H263_HEADER_SIZE (2)  // plen = 0
2333 #define RTP_H263_PAYLOAD_START (14)  // plen = 0
2334 static int rtp_packetize_h263( sout_stream_t *p_stream, sout_stream_id_t *id,
2335                                block_t *in )
2336 {
2337     uint8_t *p_data = in->p_buffer;
2338     int     i_data  = in->i_buffer;
2339     int     i;
2340     int     i_max   = id->i_mtu - 12 - RTP_H263_HEADER_SIZE; /* payload max in one packet */
2341     int     i_count;
2342     int     b_p_bit;
2343     int     b_v_bit = 0; // no pesky error resilience
2344     int     i_plen = 0; // normally plen=0 for PSC packet
2345     int     i_pebit = 0; // because plen=0
2346     uint16_t h;
2347
2348     if( i_data < 2 )
2349     {
2350         return VLC_EGENERIC;
2351     }
2352     if( p_data[0] || p_data[1] )
2353     {
2354         return VLC_EGENERIC;
2355     }
2356     /* remove 2 leading 0 bytes */
2357     p_data += 2;
2358     i_data -= 2;
2359     i_count = ( i_data + i_max - 1 ) / i_max;
2360
2361     for( i = 0; i < i_count; i++ )
2362     {
2363         int      i_payload = __MIN( i_max, i_data );
2364         block_t *out = block_New( p_stream,
2365                                   RTP_H263_PAYLOAD_START + i_payload );
2366         b_p_bit = (i == 0) ? 1 : 0;
2367         h = ( b_p_bit << 10 )|
2368             ( b_v_bit << 9  )|
2369             ( i_plen  << 3  )|
2370               i_pebit;
2371
2372         /* rtp common header */
2373         //b_m_bit = 1; // always contains end of frame
2374         rtp_packetize_common( id, out, (i == i_count - 1)?1:0,
2375                               in->i_pts > 0 ? in->i_pts : in->i_dts );
2376
2377         /* h263 header */
2378         out->p_buffer[12] = ( h >>  8 )&0xff;
2379         out->p_buffer[13] = ( h       )&0xff;
2380         memcpy( &out->p_buffer[RTP_H263_PAYLOAD_START], p_data, i_payload );
2381
2382         out->i_buffer = RTP_H263_PAYLOAD_START + i_payload;
2383         out->i_dts    = in->i_dts + i * in->i_length / i_count;
2384         out->i_length = in->i_length / i_count;
2385
2386         rtp_packetize_send( id, out );
2387
2388         p_data += i_payload;
2389         i_data -= i_payload;
2390     }
2391
2392     return VLC_SUCCESS;
2393 }
2394
2395 /* rfc3984 */
2396 static int rtp_packetize_h264_nal( sout_stream_t *p_stream, sout_stream_id_t *id,
2397                                    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 )
2398 {
2399     const int i_max = id->i_mtu - 12; /* payload max in one packet */
2400     int i_nal_hdr;
2401     int i_nal_type;
2402
2403     if( i_data < 5 )
2404         return VLC_SUCCESS;
2405
2406     i_nal_hdr = p_data[3];
2407     i_nal_type = i_nal_hdr&0x1f;
2408     if( i_nal_type == 7 || i_nal_type == 8 )
2409     {
2410         /* XXX Why do you want to remove them ? It will break streaming with 
2411          * SPS/PPS change (broadcast) ? */
2412         return VLC_SUCCESS;
2413     }
2414
2415     /* Skip start code */
2416     p_data += 3;
2417     i_data -= 3;
2418
2419     /* */
2420     if( i_data <= i_max )
2421     {
2422         /* Single NAL unit packet */
2423         block_t *out = block_New( p_stream, 12 + i_data );
2424         out->i_dts    = i_dts;
2425         out->i_length = i_length;
2426
2427         /* */
2428         rtp_packetize_common( id, out, b_last, i_pts );
2429         out->i_buffer = 12 + i_data;
2430
2431         memcpy( &out->p_buffer[12], p_data, i_data );
2432
2433         rtp_packetize_send( id, out );
2434     }
2435     else
2436     {
2437         /* FU-A Fragmentation Unit without interleaving */
2438         const int i_count = ( i_data-1 + i_max-2 - 1 ) / (i_max-2);
2439         int i;
2440
2441         p_data++;
2442         i_data--;
2443
2444         for( i = 0; i < i_count; i++ )
2445         {
2446             const int i_payload = __MIN( i_data, i_max-2 );
2447             block_t *out = block_New( p_stream, 12 + 2 + i_payload );
2448             out->i_dts    = i_dts + i * i_length / i_count;
2449             out->i_length = i_length / i_count;
2450
2451             /* */
2452             rtp_packetize_common( id, out, (b_last && i_payload == i_data), i_pts );
2453             out->i_buffer = 14 + i_payload;
2454
2455             /* FU indicator */
2456             out->p_buffer[12] = 0x00 | (i_nal_hdr & 0x60) | 28;
2457             /* FU header */
2458             out->p_buffer[13] = ( i == 0 ? 0x80 : 0x00 ) | ( (i == i_count-1) ? 0x40 : 0x00 )  | i_nal_type;
2459             memcpy( &out->p_buffer[14], p_data, i_payload );
2460
2461             rtp_packetize_send( id, out );
2462
2463             i_data -= i_payload;
2464             p_data += i_payload;
2465         }
2466     }
2467     return VLC_SUCCESS;
2468 }
2469
2470 static int rtp_packetize_h264( sout_stream_t *p_stream, sout_stream_id_t *id,
2471                                block_t *in )
2472 {
2473     const uint8_t *p_buffer = in->p_buffer;
2474     int i_buffer = in->i_buffer;
2475
2476     while( i_buffer > 4 && ( p_buffer[0] != 0 || p_buffer[1] != 0 || p_buffer[2] != 1 ) )
2477     {
2478         i_buffer--;
2479         p_buffer++;
2480     }
2481
2482     /* Split nal units */
2483     while( i_buffer > 4 )
2484     {
2485         int i_offset;
2486         int i_size = i_buffer;
2487         int i_skip = i_buffer;
2488
2489         /* search nal end */
2490         for( i_offset = 4; i_offset+2 < i_buffer ; i_offset++)
2491         {
2492             if( p_buffer[i_offset] == 0 && p_buffer[i_offset+1] == 0 && p_buffer[i_offset+2] == 1 )
2493             {
2494                 /* we found another startcode */
2495                 i_size = i_offset - ( p_buffer[i_offset-1] == 0 ? 1 : 0);
2496                 i_skip = i_offset;
2497                 break;
2498             } 
2499         }
2500         /* TODO add STAP-A to remove a lot of overhead with small slice/sei/... */
2501         rtp_packetize_h264_nal( p_stream, id, p_buffer, i_size,
2502                                 (in->i_pts > 0 ? in->i_pts : in->i_dts), in->i_dts,
2503                                 (i_size >= i_buffer), in->i_length * i_size / in->i_buffer );
2504
2505         i_buffer -= i_skip;
2506         p_buffer += i_skip;
2507     }
2508     return VLC_SUCCESS;
2509 }
2510
2511 static int rtp_packetize_amr( sout_stream_t *p_stream, sout_stream_id_t *id,
2512                               block_t *in )
2513 {
2514     int     i_max   = id->i_mtu - 14; /* payload max in one packet */
2515     int     i_count = ( in->i_buffer + i_max - 1 ) / i_max;
2516
2517     uint8_t *p_data = in->p_buffer;
2518     int     i_data  = in->i_buffer;
2519     int     i;
2520
2521     /* Only supports octet-aligned mode */
2522     for( i = 0; i < i_count; i++ )
2523     {
2524         int           i_payload = __MIN( i_max, i_data );
2525         block_t *out = block_New( p_stream, 14 + i_payload );
2526
2527         /* rtp common header */
2528         rtp_packetize_common( id, out, ((i == i_count - 1)?1:0),
2529                               (in->i_pts > 0 ? in->i_pts : in->i_dts) );
2530         /* Payload header */
2531         out->p_buffer[12] = 0xF0; /* CMR */
2532         out->p_buffer[13] = p_data[0]&0x7C; /* ToC */ /* FIXME: frame type */
2533
2534         /* FIXME: are we fed multiple frames ? */
2535         memcpy( &out->p_buffer[14], p_data+1, i_payload-1 );
2536
2537         out->i_buffer   = 14 + i_payload-1;
2538         out->i_dts    = in->i_dts + i * in->i_length / i_count;
2539         out->i_length = in->i_length / i_count;
2540
2541         rtp_packetize_send( id, out );
2542
2543         p_data += i_payload;
2544         i_data -= i_payload;
2545     }
2546
2547     return VLC_SUCCESS;
2548 }