]> git.sesse.net Git - vlc/blob - modules/demux/live555.cpp
live555: fix seeking
[vlc] / modules / demux / live555.cpp
1 /*****************************************************************************
2  * live555.cpp : LIVE555 Streaming Media support.
3  *****************************************************************************
4  * Copyright (C) 2003-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Derk-Jan Hartman <hartman at videolan. org>
9  *          Derk-Jan Hartman <djhartman at m2x .dot. nl> for M2X
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License along
22  * with this program; if not, write to the Free Software Foundation, Inc.,
23  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29
30 /* For inttypes.h
31  * Note: config.h may include inttypes.h, so make sure we define this option
32  * early enough. */
33 #define __STDC_CONSTANT_MACROS 1
34
35 #ifdef HAVE_CONFIG_H
36 # include "config.h"
37 #endif
38
39 #include <inttypes.h>
40
41 #include <vlc_common.h>
42 #include <vlc_plugin.h>
43 #include <vlc_input.h>
44 #include <vlc_demux.h>
45 #include <vlc_dialog.h>
46 #include <vlc_url.h>
47 #include <vlc_strings.h>
48
49 #include <iostream>
50 #include <limits.h>
51 #include <assert.h>
52
53
54 #if defined( WIN32 )
55 #   include <winsock2.h>
56 #endif
57
58 #include <UsageEnvironment.hh>
59 #include <BasicUsageEnvironment.hh>
60 #include <GroupsockHelper.hh>
61 #include <liveMedia.hh>
62
63 extern "C" {
64 #include "../access/mms/asf.h"  /* Who said ugly ? */
65 }
66
67 using namespace std;
68
69 /*****************************************************************************
70  * Module descriptor
71  *****************************************************************************/
72 static int  Open ( vlc_object_t * );
73 static void Close( vlc_object_t * );
74
75 #define CACHING_TEXT N_("Caching value (ms)")
76 #define CACHING_LONGTEXT N_( \
77     "Allows you to modify the default caching value for RTSP streams. This " \
78     "value should be set in millisecond units." )
79
80 #define KASENNA_TEXT N_( "Kasenna RTSP dialect")
81 #define KASENNA_LONGTEXT N_( "Kasenna servers use an old and nonstandard " \
82     "dialect of RTSP. With this parameter VLC will try this dialect, but "\
83     "then it cannot connect to normal RTSP servers." )
84
85 #define USER_TEXT N_("RTSP user name")
86 #define USER_LONGTEXT N_("Sets the username for the connection, " \
87     "if no username or password are set in the url.")
88 #define PASS_TEXT N_("RTSP password")
89 #define PASS_LONGTEXT N_("Sets the password for the connection, " \
90     "if no username or password are set in the url.")
91
92 vlc_module_begin ()
93     set_description( N_("RTP/RTSP/SDP demuxer (using Live555)" ) )
94     set_capability( "demux", 50 )
95     set_shortname( "RTP/RTSP")
96     set_callbacks( Open, Close )
97     add_shortcut( "live" )
98     add_shortcut( "livedotcom" )
99     set_category( CAT_INPUT )
100     set_subcategory( SUBCAT_INPUT_DEMUX )
101
102     add_submodule ()
103         set_description( N_("RTSP/RTP access and demux") )
104         add_shortcut( "rtsp" )
105         add_shortcut( "sdp" )
106         add_shortcut( "live" )
107         add_shortcut( "livedotcom" )
108         set_capability( "access_demux", 0 )
109         set_callbacks( Open, Close )
110         add_bool( "rtsp-tcp", 0, NULL,
111                   N_("Use RTP over RTSP (TCP)"),
112                   N_("Use RTP over RTSP (TCP)"), true )
113             change_safe()
114         add_integer( "rtp-client-port", -1, NULL,
115                   N_("Client port"),
116                   N_("Port to use for the RTP source of the session"), true )
117         add_bool( "rtsp-mcast", false, NULL,
118                   N_("Force multicast RTP via RTSP"),
119                   N_("Force multicast RTP via RTSP"), true )
120             change_safe()
121         add_bool( "rtsp-http", 0, NULL,
122                   N_("Tunnel RTSP and RTP over HTTP"),
123                   N_("Tunnel RTSP and RTP over HTTP"), true )
124             change_safe()
125         add_integer( "rtsp-http-port", 80, NULL,
126                   N_("HTTP tunnel port"),
127                   N_("Port to use for tunneling the RTSP/RTP over HTTP."),
128                   true )
129         add_integer("rtsp-caching", 4 * DEFAULT_PTS_DELAY / 1000, NULL,
130                     CACHING_TEXT, CACHING_LONGTEXT, true )
131             change_safe()
132         add_bool(   "rtsp-kasenna", false, NULL, KASENNA_TEXT,
133                     KASENNA_LONGTEXT, true )
134         add_string( "rtsp-user", NULL, NULL, USER_TEXT,
135                     USER_LONGTEXT, true )
136         add_password( "rtsp-pwd", NULL, NULL, PASS_TEXT,
137                       PASS_LONGTEXT, true )
138 vlc_module_end ()
139
140
141 /*****************************************************************************
142  * Local prototypes
143  *****************************************************************************/
144
145 typedef struct
146 {
147     demux_t         *p_demux;
148     MediaSubsession *sub;
149
150     es_format_t     fmt;
151     es_out_id_t     *p_es;
152
153     bool            b_muxed;
154     bool            b_quicktime;
155     bool            b_asf;
156     bool            b_discard_trunc;
157     stream_t        *p_out_muxed;    /* for muxed stream */
158
159     uint8_t         *p_buffer;
160     unsigned int    i_buffer;
161
162     bool            b_rtcp_sync;
163     char            waiting;
164     int64_t         i_pts;
165     float           i_npt;
166
167 } live_track_t;
168
169 struct timeout_thread_t
170 {
171     demux_sys_t  *p_sys;
172     vlc_thread_t handle;
173     bool         b_handle_keep_alive;
174 };
175
176 struct demux_sys_t
177 {
178     char            *p_sdp;    /* XXX mallocated */
179     char            *psz_path; /* URL-encoded path */
180     vlc_url_t       url;
181
182     MediaSession     *ms;
183     TaskScheduler    *scheduler;
184     UsageEnvironment *env ;
185     RTSPClient       *rtsp;
186
187     /* */
188     int              i_track;
189     live_track_t     **track;   /* XXX mallocated */
190
191     /* Weird formats */
192     asf_header_t     asfh;
193     stream_t         *p_out_asf;
194     bool             b_real;
195
196     /* */
197     int64_t          i_pcr; /* The clock */
198     float            i_npt;
199     float            i_npt_length;
200     float            i_npt_start;
201
202     /* timeout thread information */
203     int              i_timeout;     /* session timeout value in seconds */
204     bool             b_timeout_call;/* mark to send an RTSP call to prevent server timeout */
205     timeout_thread_t *p_timeout;    /* the actual thread that makes sure we don't timeout */
206
207     /* */
208     bool             b_force_mcast;
209     bool             b_multicast;   /* if one of the tracks is multicasted */
210     bool             b_no_data;     /* if we never received any data */
211     int              i_no_data_ti;  /* consecutive number of TaskInterrupt */
212
213     char             event;
214
215     bool             b_get_param;   /* Does the server support GET_PARAMETER */
216 };
217
218 static int Demux  ( demux_t * );
219 static int Control( demux_t *, int, va_list );
220
221 static int Connect      ( demux_t * );
222 static int SessionsSetup( demux_t * );
223 static int Play         ( demux_t *);
224 static int ParseASF     ( demux_t * );
225 static int RollOverTcp  ( demux_t * );
226
227 static void StreamRead  ( void *, unsigned int, unsigned int,
228                           struct timeval, unsigned int );
229 static void StreamClose ( void * );
230 static void TaskInterrupt( void * );
231
232 static void* TimeoutPrevention( void * );
233
234 static unsigned char* parseH264ConfigStr( char const* configStr,
235                                           unsigned int& configSize );
236
237 /*****************************************************************************
238  * DemuxOpen:
239  *****************************************************************************/
240 static int  Open ( vlc_object_t *p_this )
241 {
242     demux_t     *p_demux = (demux_t*)p_this;
243     demux_sys_t *p_sys = NULL;
244
245     int i_return;
246     int i_error = VLC_EGENERIC;
247
248     if( p_demux->s )
249     {
250         /* See if it looks like a SDP
251            v, o, s fields are mandatory and in this order */
252         const uint8_t *p_peek;
253         if( stream_Peek( p_demux->s, &p_peek, 7 ) < 7 ) return VLC_EGENERIC;
254
255         if( memcmp( p_peek, "v=0\r\n", 5 ) &&
256             memcmp( p_peek, "v=0\n", 4 ) &&
257             ( p_peek[0] < 'a' || p_peek[0] > 'z' || p_peek[1] != '=' ) )
258         {
259             return VLC_EGENERIC;
260         }
261     }
262     else
263     {
264         var_Create( p_demux, "rtsp-caching", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
265     }
266
267     p_demux->pf_demux  = Demux;
268     p_demux->pf_control= Control;
269     p_demux->p_sys     = p_sys = (demux_sys_t*)malloc( sizeof( demux_sys_t ) );
270     if( !p_sys ) return VLC_ENOMEM;
271
272     p_sys->p_sdp = NULL;
273     p_sys->scheduler = NULL;
274     p_sys->env = NULL;
275     p_sys->ms = NULL;
276     p_sys->rtsp = NULL;
277     p_sys->i_track = 0;
278     p_sys->track   = NULL;
279     p_sys->i_pcr = 0;
280     p_sys->i_npt = 0.;
281     p_sys->i_npt_start = 0.;
282     p_sys->i_npt_length = 0.;
283     p_sys->p_out_asf = NULL;
284     p_sys->b_no_data = true;
285     p_sys->i_no_data_ti = 0;
286     p_sys->p_timeout = NULL;
287     p_sys->i_timeout = 0;
288     p_sys->b_timeout_call = false;
289     p_sys->b_multicast = false;
290     p_sys->b_real = false;
291     p_sys->psz_path = strdup( p_demux->psz_path );
292     p_sys->b_force_mcast = var_CreateGetBool( p_demux, "rtsp-mcast" );
293     p_sys->b_get_param = false;
294
295     /* parse URL for rtsp://[user:[passwd]@]serverip:port/options */
296     vlc_UrlParse( &p_sys->url, p_sys->psz_path, 0 );
297
298     if( ( p_sys->scheduler = BasicTaskScheduler::createNew() ) == NULL )
299     {
300         msg_Err( p_demux, "BasicTaskScheduler::createNew failed" );
301         goto error;
302     }
303     if( !( p_sys->env = BasicUsageEnvironment::createNew(*p_sys->scheduler) ) )
304     {
305         msg_Err( p_demux, "BasicUsageEnvironment::createNew failed" );
306         goto error;
307     }
308
309     if( strcasecmp( p_demux->psz_access, "sdp" ) )
310     {
311         char *p = p_sys->psz_path;
312         while( (p = strchr( p, ' ' )) != NULL ) *p = '+';
313     }
314
315     if( p_demux->s != NULL )
316     {
317         /* Gather the complete sdp file */
318         int     i_sdp       = 0;
319         int     i_sdp_max   = 1000;
320         uint8_t *p_sdp      = (uint8_t*) malloc( i_sdp_max );
321
322         if( !p_sdp )
323         {
324             i_error = VLC_ENOMEM;
325             goto error;
326         }
327
328         for( ;; )
329         {
330             int i_read = stream_Read( p_demux->s, &p_sdp[i_sdp],
331                                       i_sdp_max - i_sdp - 1 );
332
333             if( !vlc_object_alive (p_demux) || p_demux->b_error )
334             {
335                 free( p_sdp );
336                 goto error;
337             }
338
339             if( i_read < 0 )
340             {
341                 msg_Err( p_demux, "failed to read SDP" );
342                 free( p_sdp );
343                 goto error;
344             }
345
346             i_sdp += i_read;
347
348             if( i_read < i_sdp_max - i_sdp - 1 )
349             {
350                 p_sdp[i_sdp] = '\0';
351                 break;
352             }
353
354             i_sdp_max += 1000;
355             p_sdp = (uint8_t*)realloc( p_sdp, i_sdp_max );
356         }
357         p_sys->p_sdp = (char*)p_sdp;
358     }
359     else if( ( p_demux->s == NULL ) &&
360              !strcasecmp( p_demux->psz_access, "sdp" ) )
361     {
362         /* sdp:// link from SAP */
363         p_sys->p_sdp = strdup( p_sys->psz_path );
364     }
365     else if( ( i_return = Connect( p_demux ) ) != VLC_SUCCESS )
366     {
367         msg_Err( p_demux, "Failed to connect with rtsp://%s", p_sys->psz_path );
368         goto error;
369     }
370
371     if( p_sys->p_sdp == NULL )
372     {
373         msg_Err( p_demux, "Failed to retrieve the RTSP Session Description" );
374         i_error = VLC_ENOMEM;
375         goto error;
376     }
377
378     if( ( i_return = SessionsSetup( p_demux ) ) != VLC_SUCCESS )
379     {
380         msg_Err( p_demux, "Nothing to play for rtsp://%s", p_sys->psz_path );
381         goto error;
382     }
383
384     if( p_sys->b_real ) goto error;
385
386     if( ( i_return = Play( p_demux ) ) != VLC_SUCCESS )
387         goto error;
388
389     if( p_sys->p_out_asf && ParseASF( p_demux ) )
390     {
391         msg_Err( p_demux, "cannot find a usable asf header" );
392         /* TODO Clean tracks */
393         goto error;
394     }
395
396     if( p_sys->i_track <= 0 )
397         goto error;
398
399     return VLC_SUCCESS;
400
401 error:
402     Close( p_this );
403     return i_error;
404 }
405
406 /*****************************************************************************
407  * DemuxClose:
408  *****************************************************************************/
409 static void Close( vlc_object_t *p_this )
410 {
411     demux_t *p_demux = (demux_t*)p_this;
412     demux_sys_t *p_sys = p_demux->p_sys;
413     int i;
414
415     for( i = 0; i < p_sys->i_track; i++ )
416     {
417         live_track_t *tk = p_sys->track[i];
418
419         if( tk->b_muxed ) stream_Delete( tk->p_out_muxed );
420         es_format_Clean( &tk->fmt );
421         free( tk->p_buffer );
422         free( tk );
423     }
424
425     if( p_sys->i_track ) free( p_sys->track );
426     if( p_sys->p_out_asf ) stream_Delete( p_sys->p_out_asf );
427     if( p_sys->rtsp && p_sys->ms ) p_sys->rtsp->teardownMediaSession( *p_sys->ms );
428     if( p_sys->p_timeout )
429     {
430         vlc_cancel( p_sys->p_timeout->handle );
431         vlc_join( p_sys->p_timeout->handle, NULL );
432         free( p_sys->p_timeout );
433     }
434     if( p_sys->ms ) Medium::close( p_sys->ms );
435     if( p_sys->rtsp ) RTSPClient::close( p_sys->rtsp );
436     if( p_sys->env ) p_sys->env->reclaim();
437     delete p_sys->scheduler;
438     free( p_sys->p_sdp );
439     free( p_sys->psz_path );
440
441     vlc_UrlClean( &p_sys->url );
442
443     free( p_sys );
444 }
445
446 static inline const char *strempty( const char *s ) { return s?s:""; }
447 static inline Boolean toBool( bool b ) { return b?True:False; } // silly, no?
448
449 /*****************************************************************************
450  * Connect: connects to the RTSP server to setup the session DESCRIBE
451  *****************************************************************************/
452 static int Connect( demux_t *p_demux )
453 {
454     demux_sys_t *p_sys = p_demux->p_sys;
455     Authenticator authenticator;
456     bool b_firstpass  = true;
457     char *psz_user    = NULL;
458     char *psz_pwd     = NULL;
459     char *psz_url     = NULL;
460     char *psz_options = NULL;
461     char *p_sdp       = NULL;
462     int  i_http_port  = 0;
463     int  i_ret        = VLC_SUCCESS;
464
465     /* Create the url using the port number if available */
466     if( p_sys->url.i_port == 0 )
467     {
468         p_sys->url.i_port = 554;
469         if( asprintf( &psz_url, "rtsp://%s", p_sys->psz_path ) == -1 )
470             return VLC_ENOMEM;
471     }
472     else
473     {
474         if( asprintf( &psz_url, "rtsp://%s:%d%s", p_sys->url.psz_host,
475                       p_sys->url.i_port, p_sys->url.psz_path ) == -1 )
476             return VLC_ENOMEM;
477     }
478
479     /* Get the user name and password */
480     if( p_sys->url.psz_username || p_sys->url.psz_password )
481     {
482         psz_user = strdup( strempty( p_sys->url.psz_username ) );
483         psz_pwd  = strdup( strempty( p_sys->url.psz_password ) );
484     }
485     else
486     {
487         psz_user = var_CreateGetString( p_demux, "rtsp-user" );
488         psz_pwd  = var_CreateGetString( p_demux, "rtsp-pwd" );
489     }
490
491 createnew:
492     if( !vlc_object_alive (p_demux) || p_demux->b_error )
493     {
494         i_ret = VLC_EGENERIC;
495         goto bailout;
496     }
497
498     if( var_CreateGetBool( p_demux, "rtsp-http" ) )
499         i_http_port = var_CreateGetInteger( p_demux, "rtsp-http-port" );
500
501     if( ( p_sys->rtsp = RTSPClient::createNew( *p_sys->env,
502           var_CreateGetInteger( p_demux, "verbose" ) > 1,
503           "VLC media player", i_http_port ) ) == NULL )
504     {
505         msg_Err( p_demux, "RTSPClient::createNew failed (%s)",
506                  p_sys->env->getResultMsg() );
507         i_ret = VLC_EGENERIC;
508         goto bailout;
509     }
510
511     /* Kasenna enables KeepAlive by analysing the User-Agent string.
512      * Appending _KA to the string should be enough to enable this feature,
513      * however, there is a bug where the _KA doesn't get parsed from the
514      * default User-Agent as created by VLC/Live555 code. This is probably due
515      * to spaces in the string or the string being too long. Here we override
516      * the default string with a more compact version.
517      */
518     if( var_CreateGetBool( p_demux, "rtsp-kasenna" ))
519     {
520         p_sys->rtsp->setUserAgentString( "VLC_MEDIA_PLAYER_KA" );
521     }
522
523 describe:
524     authenticator.setUsernameAndPassword( psz_user, psz_pwd );
525
526     /* */
527     { /* i_timeout hack scope */
528 #if LIVEMEDIA_LIBRARY_VERSION_INT >= 1223337600
529     const int i_timeout = var_CreateGetInteger(p_demux, "ipv4-timeout") / 1000;
530     psz_options = p_sys->rtsp->sendOptionsCmd( psz_url, psz_user, psz_pwd,
531                                                &authenticator, i_timeout );
532 #else
533     psz_options = p_sys->rtsp->sendOptionsCmd( psz_url, psz_user, psz_pwd,
534                                                &authenticator );
535 #endif
536     if( psz_options == NULL && authenticator.realm() != NULL )
537     {
538         // try again, with the realm set this time
539 #if LIVEMEDIA_LIBRARY_VERSION_INT >= 1223337600
540         psz_options = p_sys->rtsp->sendOptionsCmd( psz_url, psz_user, psz_pwd,
541                                                &authenticator, i_timeout );
542 #else
543         psz_options = p_sys->rtsp->sendOptionsCmd( psz_url, psz_user, psz_pwd,
544                                                &authenticator );
545 #endif
546     }
547     if( psz_options )
548         p_sys->b_get_param = (bool)strstr( psz_options, "GET_PARAMETER" );
549     delete [] psz_options;
550
551 #if LIVEMEDIA_LIBRARY_VERSION_INT >= 1223337600
552     p_sdp = p_sys->rtsp->describeWithPassword( psz_url, psz_user, psz_pwd,
553                           var_GetBool( p_demux, "rtsp-kasenna" ), i_timeout );
554 #else
555     p_sdp = p_sys->rtsp->describeWithPassword( psz_url, psz_user, psz_pwd,
556                                      var_GetBool( p_demux, "rtsp-kasenna" ) );
557 #endif
558     } /* i_timeout scope end */
559
560     if( p_sdp == NULL )
561     {
562         /* failure occurred */
563         int i_code = 0;
564         const char *psz_error = p_sys->env->getResultMsg();
565
566         if( var_GetBool( p_demux, "rtsp-http" ) )
567             sscanf( psz_error, "%*s %*s HTTP GET %*s HTTP/%*u.%*u %3u %*s",
568                     &i_code );
569         else
570         {
571             const char *psz_tmp = strstr( psz_error, "RTSP" );
572             if( psz_tmp )
573                 sscanf( psz_tmp, "RTSP/%*s%3u", &i_code );
574             else
575                 i_code = 0;
576         }
577         msg_Dbg( p_demux, "DESCRIBE failed with %d: %s", i_code, psz_error );
578
579         if( b_firstpass )
580         {   /* describeURL always returns an "RTSP/1.0 401 Unauthorized" the
581              * first time. This is a workaround to avoid asking for a
582              * user/passwd the first time the code passess here. */
583             i_code = 0;
584             b_firstpass = false;
585         }
586
587         if( i_code == 401 )
588         {
589             msg_Dbg( p_demux, "authentication failed" );
590
591             free( psz_user );
592             free( psz_pwd );
593             dialog_Login( p_demux, &psz_user, &psz_pwd,
594                           _("RTSP authentication"), "%s",
595                         _("Please enter a valid login name and a password.") );
596             if( psz_user != NULL && psz_pwd != NULL )
597             {
598                 msg_Dbg( p_demux, "retrying with user=%s", psz_user );
599                 goto describe;
600             }
601         }
602         else if( (i_code != 0) && !var_GetBool( p_demux, "rtsp-http" ) )
603         {
604             /* Perhaps a firewall is being annoying. Try HTTP tunneling mode */
605             msg_Dbg( p_demux, "we will now try HTTP tunneling mode" );
606             var_SetBool( p_demux, "rtsp-http", true );
607             if( p_sys->rtsp ) RTSPClient::close( p_sys->rtsp );
608             p_sys->rtsp = NULL;
609             goto createnew;
610         }
611         else
612         {
613             msg_Dbg( p_demux, "connection timeout" );
614             if( p_sys->rtsp ) RTSPClient::close( p_sys->rtsp );
615             p_sys->rtsp = NULL;
616         }
617         i_ret = VLC_EGENERIC;
618     }
619
620     free( p_sys->p_sdp );
621     p_sys->p_sdp = NULL;
622     if( p_sdp ) p_sys->p_sdp = strdup( (char*)p_sdp );
623     delete[] p_sdp;
624
625 bailout:
626     /* malloc-ated copy */
627     free( psz_url );
628     free( psz_user );
629     free( psz_pwd );
630
631     return i_ret;
632 }
633
634 /*****************************************************************************
635  * SessionsSetup: prepares the subsessions and does the SETUP
636  *****************************************************************************/
637 static int SessionsSetup( demux_t *p_demux )
638 {
639     demux_sys_t             *p_sys  = p_demux->p_sys;
640     MediaSubsessionIterator *iter   = NULL;
641     MediaSubsession         *sub    = NULL;
642
643     bool           b_rtsp_tcp = false;
644     int            i_client_port;
645     int            i_return = VLC_SUCCESS;
646     unsigned int   i_buffer = 0;
647     unsigned const thresh = 200000; /* RTP reorder threshold .2 second (default .1) */
648
649     b_rtsp_tcp    = var_CreateGetBool( p_demux, "rtsp-tcp" ) ||
650                     var_GetBool( p_demux, "rtsp-http" );
651     i_client_port = var_CreateGetInteger( p_demux, "rtp-client-port" );
652
653     /* Create the session from the SDP */
654     if( !( p_sys->ms = MediaSession::createNew( *p_sys->env, p_sys->p_sdp ) ) )
655     {
656         msg_Err( p_demux, "Could not create the RTSP Session: %s",
657             p_sys->env->getResultMsg() );
658         return VLC_EGENERIC;
659     }
660
661     /* Initialise each media subsession */
662     iter = new MediaSubsessionIterator( *p_sys->ms );
663     while( ( sub = iter->next() ) != NULL )
664     {
665         Boolean bInit;
666         live_track_t *tk;
667
668         if( !vlc_object_alive (p_demux) || p_demux->b_error )
669         {
670             delete iter;
671             return VLC_EGENERIC;
672         }
673
674         /* Value taken from mplayer */
675         if( !strcmp( sub->mediumName(), "audio" ) )
676             i_buffer = 100000;
677         else if( !strcmp( sub->mediumName(), "video" ) )
678             i_buffer = 2000000;
679         else continue;
680
681         if( i_client_port != -1 )
682         {
683             sub->setClientPortNum( i_client_port );
684             i_client_port += 2;
685         }
686
687         if( strcasestr( sub->codecName(), "REAL" ) )
688         {
689             msg_Info( p_demux, "real codec detected, using real-RTSP instead" );
690             p_sys->b_real = true; /* This is a problem, we'll handle it later */
691             continue;
692         }
693
694         if( !strcmp( sub->codecName(), "X-ASF-PF" ) )
695             bInit = sub->initiate( 4 ); /* Constant ? */
696         else
697             bInit = sub->initiate();
698
699         if( !bInit )
700         {
701             msg_Warn( p_demux, "RTP subsession '%s/%s' failed (%s)",
702                       sub->mediumName(), sub->codecName(),
703                       p_sys->env->getResultMsg() );
704         }
705         else
706         {
707             if( sub->rtpSource() != NULL )
708             {
709                 int fd = sub->rtpSource()->RTPgs()->socketNum();
710
711                 /* Increase the buffer size */
712                 if( i_buffer > 0 )
713                     increaseReceiveBufferTo( *p_sys->env, fd, i_buffer );
714
715                 /* Increase the RTP reorder timebuffer just a bit */
716                 sub->rtpSource()->setPacketReorderingThresholdTime(thresh);
717             }
718             msg_Dbg( p_demux, "RTP subsession '%s/%s'", sub->mediumName(),
719                      sub->codecName() );
720
721             /* Issue the SETUP */
722             if( p_sys->rtsp )
723             {
724                 if( !p_sys->rtsp->setupMediaSubsession( *sub, False,
725                                                         toBool( b_rtsp_tcp ),
726                              toBool( p_sys->b_force_mcast && !b_rtsp_tcp ) ) )
727                 {
728                     /* if we get an unsupported transport error, toggle TCP
729                      * use and try again */
730                     if( !strstr(p_sys->env->getResultMsg(),
731                                 "461 Unsupported Transport")
732                         || !p_sys->rtsp->setupMediaSubsession( *sub, False,
733                                                toBool( b_rtsp_tcp ), False ) )
734                     {
735                         msg_Err( p_demux, "SETUP of'%s/%s' failed %s",
736                                  sub->mediumName(), sub->codecName(),
737                                  p_sys->env->getResultMsg() );
738                         continue;
739                     }
740                 }
741             }
742
743             /* Check if we will receive data from this subsession for
744              * this track */
745             if( sub->readSource() == NULL ) continue;
746             if( !p_sys->b_multicast )
747             {
748                 /* We need different rollover behaviour for multicast */
749                 p_sys->b_multicast = IsMulticastAddress( sub->connectionEndpointAddress() );
750             }
751
752             tk = (live_track_t*)malloc( sizeof( live_track_t ) );
753             if( !tk )
754             {
755                 delete iter;
756                 return VLC_ENOMEM;
757             }
758             tk->p_demux     = p_demux;
759             tk->sub         = sub;
760             tk->p_es        = NULL;
761             tk->b_quicktime = false;
762             tk->b_asf       = false;
763             tk->b_muxed     = false;
764             tk->b_discard_trunc = false;
765             tk->p_out_muxed = NULL;
766             tk->waiting     = 0;
767             tk->b_rtcp_sync = false;
768             tk->i_pts       = 0;
769             tk->i_npt       = 0.;
770             tk->i_buffer    = 65536;
771             tk->p_buffer    = (uint8_t *)malloc( 65536 );
772             if( !tk->p_buffer )
773             {
774                 free( tk );
775                 delete iter;
776                 return VLC_ENOMEM;
777             }
778
779             /* Value taken from mplayer */
780             if( !strcmp( sub->mediumName(), "audio" ) )
781             {
782                 es_format_Init( &tk->fmt, AUDIO_ES, VLC_FOURCC('u','n','d','f') );
783                 tk->fmt.audio.i_channels = sub->numChannels();
784                 tk->fmt.audio.i_rate = sub->rtpTimestampFrequency();
785
786                 if( !strcmp( sub->codecName(), "MPA" ) ||
787                     !strcmp( sub->codecName(), "MPA-ROBUST" ) ||
788                     !strcmp( sub->codecName(), "X-MP3-DRAFT-00" ) )
789                 {
790                     tk->fmt.i_codec = VLC_CODEC_MPGA;
791                     tk->fmt.audio.i_rate = 0;
792                 }
793                 else if( !strcmp( sub->codecName(), "AC3" ) )
794                 {
795                     tk->fmt.i_codec = VLC_CODEC_A52;
796                     tk->fmt.audio.i_rate = 0;
797                 }
798                 else if( !strcmp( sub->codecName(), "L16" ) )
799                 {
800                     tk->fmt.i_codec = VLC_FOURCC( 't', 'w', 'o', 's' );
801                     tk->fmt.audio.i_bitspersample = 16;
802                 }
803                 else if( !strcmp( sub->codecName(), "L8" ) )
804                 {
805                     tk->fmt.i_codec = VLC_FOURCC( 'a', 'r', 'a', 'w' );
806                     tk->fmt.audio.i_bitspersample = 8;
807                 }
808                 else if( !strcmp( sub->codecName(), "PCMU" ) )
809                 {
810                     tk->fmt.i_codec = VLC_CODEC_MULAW;
811                 }
812                 else if( !strcmp( sub->codecName(), "PCMA" ) )
813                 {
814                     tk->fmt.i_codec = VLC_CODEC_ALAW;
815                 }
816                 else if( !strncmp( sub->codecName(), "G726", 4 ) )
817                 {
818                     tk->fmt.i_codec = VLC_CODEC_ADPCM_G726;
819                     tk->fmt.audio.i_rate = 8000;
820                     tk->fmt.audio.i_channels = 1;
821                     if( !strcmp( sub->codecName()+5, "40" ) )
822                         tk->fmt.i_bitrate = 40000;
823                     else if( !strcmp( sub->codecName()+5, "32" ) )
824                         tk->fmt.i_bitrate = 32000;
825                     else if( !strcmp( sub->codecName()+5, "24" ) )
826                         tk->fmt.i_bitrate = 24000;
827                     else if( !strcmp( sub->codecName()+5, "16" ) )
828                         tk->fmt.i_bitrate = 16000;
829                 }
830                 else if( !strcmp( sub->codecName(), "AMR" ) )
831                 {
832                     tk->fmt.i_codec = VLC_CODEC_AMR_NB;
833                 }
834                 else if( !strcmp( sub->codecName(), "AMR-WB" ) )
835                 {
836                     tk->fmt.i_codec = VLC_CODEC_AMR_WB;
837                 }
838                 else if( !strcmp( sub->codecName(), "MP4A-LATM" ) )
839                 {
840                     unsigned int i_extra;
841                     uint8_t      *p_extra;
842
843                     tk->fmt.i_codec = VLC_CODEC_MP4A;
844
845                     if( ( p_extra = parseStreamMuxConfigStr( sub->fmtp_config(),
846                                                              i_extra ) ) )
847                     {
848                         tk->fmt.i_extra = i_extra;
849                         tk->fmt.p_extra = malloc( i_extra );
850                         memcpy( tk->fmt.p_extra, p_extra, i_extra );
851                         delete[] p_extra;
852                     }
853                     /* Because the "faad" decoder does not handle the LATM
854                      * data length field at the start of each returned LATM
855                      * frame, tell the RTP source to omit it. */
856                     ((MPEG4LATMAudioRTPSource*)sub->rtpSource())->omitLATMDataLengthField();
857                 }
858                 else if( !strcmp( sub->codecName(), "MPEG4-GENERIC" ) )
859                 {
860                     unsigned int i_extra;
861                     uint8_t      *p_extra;
862
863                     tk->fmt.i_codec = VLC_CODEC_MP4A;
864
865                     if( ( p_extra = parseGeneralConfigStr( sub->fmtp_config(),
866                                                            i_extra ) ) )
867                     {
868                         tk->fmt.i_extra = i_extra;
869                         tk->fmt.p_extra = malloc( i_extra );
870                         memcpy( tk->fmt.p_extra, p_extra, i_extra );
871                         delete[] p_extra;
872                     }
873                 }
874                 else if( !strcmp( sub->codecName(), "X-ASF-PF" ) )
875                 {
876                     tk->b_asf = true;
877                     if( p_sys->p_out_asf == NULL )
878                         p_sys->p_out_asf = stream_DemuxNew( p_demux, "asf",
879                                                             p_demux->out );
880                 }
881                 else if( !strcmp( sub->codecName(), "X-QT" ) ||
882                          !strcmp( sub->codecName(), "X-QUICKTIME" ) )
883                 {
884                     tk->b_quicktime = true;
885                 }
886                 else if( !strcmp( sub->codecName(), "SPEEX" ) )
887                 {
888                     tk->fmt.i_codec = VLC_FOURCC( 's', 'p', 'x', 'r' );
889                     if ( sub->rtpTimestampFrequency() )
890                         tk->fmt.audio.i_rate = sub->rtpTimestampFrequency();
891                     else
892                     {
893                         msg_Warn( p_demux,"Using 8kHz as default sample rate." );
894                         tk->fmt.audio.i_rate = 8000;
895                     }
896                 }
897             }
898             else if( !strcmp( sub->mediumName(), "video" ) )
899             {
900                 es_format_Init( &tk->fmt, VIDEO_ES, VLC_FOURCC('u','n','d','f') );
901                 if( !strcmp( sub->codecName(), "MPV" ) )
902                 {
903                     tk->fmt.i_codec = VLC_CODEC_MPGV;
904                 }
905                 else if( !strcmp( sub->codecName(), "H263" ) ||
906                          !strcmp( sub->codecName(), "H263-1998" ) ||
907                          !strcmp( sub->codecName(), "H263-2000" ) )
908                 {
909                     tk->fmt.i_codec = VLC_CODEC_H263;
910                 }
911                 else if( !strcmp( sub->codecName(), "H261" ) )
912                 {
913                     tk->fmt.i_codec = VLC_CODEC_H261;
914                 }
915                 else if( !strcmp( sub->codecName(), "H264" ) )
916                 {
917                     unsigned int i_extra = 0;
918                     uint8_t      *p_extra = NULL;
919
920                     tk->fmt.i_codec = VLC_CODEC_H264;
921                     tk->fmt.b_packetized = false;
922
923                     if((p_extra=parseH264ConfigStr( sub->fmtp_spropparametersets(),
924                                                     i_extra ) ) )
925                     {
926                         tk->fmt.i_extra = i_extra;
927                         tk->fmt.p_extra = malloc( i_extra );
928                         memcpy( tk->fmt.p_extra, p_extra, i_extra );
929
930                         delete[] p_extra;
931                     }
932                 }
933                 else if( !strcmp( sub->codecName(), "JPEG" ) )
934                 {
935                     tk->fmt.i_codec = VLC_CODEC_MJPG;
936                 }
937                 else if( !strcmp( sub->codecName(), "MP4V-ES" ) )
938                 {
939                     unsigned int i_extra;
940                     uint8_t      *p_extra;
941
942                     tk->fmt.i_codec = VLC_CODEC_MP4V;
943
944                     if( ( p_extra = parseGeneralConfigStr( sub->fmtp_config(),
945                                                            i_extra ) ) )
946                     {
947                         tk->fmt.i_extra = i_extra;
948                         tk->fmt.p_extra = malloc( i_extra );
949                         memcpy( tk->fmt.p_extra, p_extra, i_extra );
950                         delete[] p_extra;
951                     }
952                 }
953                 else if( !strcmp( sub->codecName(), "X-QT" ) ||
954                          !strcmp( sub->codecName(), "X-QUICKTIME" ) ||
955                          !strcmp( sub->codecName(), "X-QDM" ) ||
956                          !strcmp( sub->codecName(), "X-SV3V-ES" )  ||
957                          !strcmp( sub->codecName(), "X-SORENSONVIDEO" ) )
958                 {
959                     tk->b_quicktime = true;
960                 }
961                 else if( !strcmp( sub->codecName(), "MP2T" ) )
962                 {
963                     tk->b_muxed = true;
964                     tk->p_out_muxed = stream_DemuxNew( p_demux, "ts", p_demux->out );
965                 }
966                 else if( !strcmp( sub->codecName(), "MP2P" ) ||
967                          !strcmp( sub->codecName(), "MP1S" ) )
968                 {
969                     tk->b_muxed = true;
970                     tk->p_out_muxed = stream_DemuxNew( p_demux, "ps",
971                                                        p_demux->out );
972                 }
973                 else if( !strcmp( sub->codecName(), "X-ASF-PF" ) )
974                 {
975                     tk->b_asf = true;
976                     if( p_sys->p_out_asf == NULL )
977                         p_sys->p_out_asf = stream_DemuxNew( p_demux, "asf",
978                                                             p_demux->out );;
979                 }
980                 else if( !strcmp( sub->codecName(), "DV" ) )
981                 {
982                     tk->b_muxed = true;
983                     tk->b_discard_trunc = true;
984                     tk->p_out_muxed = stream_DemuxNew( p_demux, "rawdv",
985                                                        p_demux->out );
986                 }
987             }
988
989             if( !tk->b_quicktime && !tk->b_muxed && !tk->b_asf )
990             {
991                 tk->p_es = es_out_Add( p_demux->out, &tk->fmt );
992             }
993
994             if( sub->rtcpInstance() != NULL )
995             {
996                 sub->rtcpInstance()->setByeHandler( StreamClose, tk );
997             }
998
999             if( tk->p_es || tk->b_quicktime || tk->b_muxed || tk->b_asf )
1000             {
1001                 /* Append */
1002                 p_sys->track = (live_track_t**)realloc( p_sys->track, sizeof( live_track_t ) * ( p_sys->i_track + 1 ) );
1003                 p_sys->track[p_sys->i_track++] = tk;
1004             }
1005             else
1006             {
1007                 /* BUG ??? */
1008                 msg_Err( p_demux, "unusable RTSP track. this should not happen" );
1009                 es_format_Clean( &tk->fmt );
1010                 free( tk );
1011             }
1012         }
1013     }
1014     delete iter;
1015     if( p_sys->i_track <= 0 ) i_return = VLC_EGENERIC;
1016
1017     /* Retrieve the starttime if possible */
1018     p_sys->i_npt_start = p_sys->ms->playStartTime();
1019
1020     /* Retrieve the duration if possible */
1021     p_sys->i_npt_length = p_sys->ms->playEndTime();
1022
1023     /* */
1024     msg_Dbg( p_demux, "setup start: %f stop:%f", p_sys->i_npt_start, p_sys->i_npt_length );
1025
1026     /* */
1027     p_sys->b_no_data = true;
1028     p_sys->i_no_data_ti = 0;
1029
1030     return i_return;
1031 }
1032
1033 /*****************************************************************************
1034  * Play: starts the actual playback of the stream
1035  *****************************************************************************/
1036 static int Play( demux_t *p_demux )
1037 {
1038     demux_sys_t *p_sys = p_demux->p_sys;
1039
1040     if( p_sys->rtsp )
1041     {
1042         /* The PLAY */
1043         if( !p_sys->rtsp->playMediaSession( *p_sys->ms, p_sys->i_npt_start, -1, 1 ) )
1044         {
1045             msg_Err( p_demux, "RTSP PLAY failed %s", p_sys->env->getResultMsg() );
1046             return VLC_EGENERIC;
1047         }
1048
1049         /* Retrieve the timeout value and set up a timeout prevention thread */
1050         p_sys->i_timeout = p_sys->rtsp->sessionTimeoutParameter();
1051         if( p_sys->i_timeout <= 0 )
1052             p_sys->i_timeout = 60; /* default value from RFC2326 */
1053
1054         /* start timeout-thread only if GET_PARAMETER is supported by the server */
1055         if( !p_sys->p_timeout && p_sys->b_get_param )
1056         {
1057             msg_Dbg( p_demux, "We have a timeout of %d seconds",  p_sys->i_timeout );
1058             p_sys->p_timeout = (timeout_thread_t *)malloc( sizeof(timeout_thread_t) );
1059             if( p_sys->p_timeout )
1060             {
1061                 memset( p_sys->p_timeout, 0, sizeof(timeout_thread_t) );
1062                 p_sys->p_timeout->p_sys = p_demux->p_sys; /* lol, object recursion :D */
1063                 if( vlc_clone( &p_sys->p_timeout->handle,  TimeoutPrevention,
1064                                p_sys->p_timeout, VLC_THREAD_PRIORITY_LOW ) )
1065                 {
1066                     msg_Err( p_demux, "cannot spawn liveMedia timeout thread" );
1067                     free( p_sys->p_timeout );
1068                     p_sys->p_timeout = NULL;
1069                 }
1070                 else
1071                     msg_Dbg( p_demux, "spawned timeout thread" );
1072             }
1073             else
1074                 msg_Err( p_demux, "cannot spawn liveMedia timeout thread" );
1075         }
1076     }
1077     p_sys->i_pcr = 0;
1078
1079     /* Retrieve the starttime if possible */
1080     p_sys->i_npt_start = p_sys->ms->playStartTime();
1081     if( p_sys->ms->playEndTime() > 0 )
1082         p_sys->i_npt_length = p_sys->ms->playEndTime();
1083
1084     msg_Dbg( p_demux, "play start: %f stop:%f", p_sys->i_npt_start, p_sys->i_npt_length );
1085     return VLC_SUCCESS;
1086 }
1087
1088
1089 /*****************************************************************************
1090  * Demux:
1091  *****************************************************************************/
1092 static int Demux( demux_t *p_demux )
1093 {
1094     demux_sys_t    *p_sys = p_demux->p_sys;
1095     TaskToken      task;
1096
1097     bool            b_send_pcr = true;
1098     int64_t         i_pcr = 0;
1099     int             i;
1100
1101     /* Check if we need to send the server a Keep-A-Live signal */
1102     if( p_sys->b_timeout_call && p_sys->rtsp && p_sys->ms )
1103     {
1104         char *psz_bye = NULL;
1105         p_sys->rtsp->getMediaSessionParameter( *p_sys->ms, NULL, psz_bye );
1106         p_sys->b_timeout_call = false;
1107     }
1108
1109     for( i = 0; i < p_sys->i_track; i++ )
1110     {
1111         live_track_t *tk = p_sys->track[i];
1112
1113         if( tk->b_asf || tk->b_muxed )
1114             b_send_pcr = false;
1115 #if 0
1116         if( i_pcr == 0 )
1117         {
1118             i_pcr = tk->i_pts;
1119         }
1120         else if( tk->i_pts != 0 && i_pcr > tk->i_pts )
1121         {
1122             i_pcr = tk->i_pts ;
1123         }
1124 #endif
1125     }
1126     if( p_sys->i_pcr > 0 )
1127     {
1128         if( b_send_pcr )
1129             es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_pcr );
1130     }
1131
1132     /* First warn we want to read data */
1133     p_sys->event = 0;
1134     for( i = 0; i < p_sys->i_track; i++ )
1135     {
1136         live_track_t *tk = p_sys->track[i];
1137
1138         if( tk->waiting == 0 )
1139         {
1140             tk->waiting = 1;
1141             tk->sub->readSource()->getNextFrame( tk->p_buffer, tk->i_buffer,
1142                                           StreamRead, tk, StreamClose, tk );
1143         }
1144     }
1145     /* Create a task that will be called if we wait more than 300ms */
1146     task = p_sys->scheduler->scheduleDelayedTask( 300000, TaskInterrupt, p_demux );
1147
1148     /* Do the read */
1149     p_sys->scheduler->doEventLoop( &p_sys->event );
1150
1151     /* remove the task */
1152     p_sys->scheduler->unscheduleDelayedTask( task );
1153
1154     /* Check for gap in pts value */
1155     for( i = 0; i < p_sys->i_track; i++ )
1156     {
1157         live_track_t *tk = p_sys->track[i];
1158
1159         if( !tk->b_muxed && !tk->b_rtcp_sync &&
1160             tk->sub->rtpSource() && tk->sub->rtpSource()->hasBeenSynchronizedUsingRTCP() )
1161         {
1162             msg_Dbg( p_demux, "tk->rtpSource->hasBeenSynchronizedUsingRTCP()" );
1163
1164             es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
1165             tk->b_rtcp_sync = true;
1166             /* reset PCR */
1167             tk->i_pts = 0;
1168             tk->i_npt = 0.;
1169             p_sys->i_pcr = 0;
1170             p_sys->i_npt = 0.;
1171             i_pcr = 0;
1172         }
1173     }
1174
1175     if( p_sys->b_multicast && p_sys->b_no_data &&
1176         ( p_sys->i_no_data_ti > 120 ) )
1177     {
1178         /* FIXME Make this configurable
1179         msg_Err( p_demux, "no multicast data received in 36s, aborting" );
1180         return 0;
1181         */
1182     }
1183     else if( !p_sys->b_multicast && p_sys->b_no_data &&
1184              ( p_sys->i_no_data_ti > 34 ) )
1185     {
1186         bool b_rtsp_tcp = var_GetBool( p_demux, "rtsp-tcp" ) ||
1187                                 var_GetBool( p_demux, "rtsp-http" );
1188
1189         if( !b_rtsp_tcp && p_sys->rtsp && p_sys->ms )
1190         {
1191             msg_Warn( p_demux, "no data received in 10s. Switching to TCP" );
1192             if( RollOverTcp( p_demux ) )
1193             {
1194                 msg_Err( p_demux, "TCP rollover failed, aborting" );
1195                 return 0;
1196             }
1197             return 1;
1198         }
1199         msg_Err( p_demux, "no data received in 10s, aborting" );
1200         return 0;
1201     }
1202     else if( !p_sys->b_multicast && p_sys->i_no_data_ti > 34 )
1203     {
1204         /* EOF ? */
1205         msg_Warn( p_demux, "no data received in 10s, eof ?" );
1206         return 0;
1207     }
1208     return p_demux->b_error ? 0 : 1;
1209 }
1210
1211 /*****************************************************************************
1212  * Control:
1213  *****************************************************************************/
1214 static int Control( demux_t *p_demux, int i_query, va_list args )
1215 {
1216     demux_sys_t *p_sys = p_demux->p_sys;
1217     int64_t *pi64, i64;
1218     double  *pf, f;
1219     bool *pb, *pb2, b_bool;
1220     int *pi_int;
1221
1222     switch( i_query )
1223     {
1224         case DEMUX_GET_TIME:
1225             pi64 = (int64_t*)va_arg( args, int64_t * );
1226             if( p_sys->i_npt > 0 )
1227             {
1228                 *pi64 = (int64_t)(p_sys->i_npt * 1000000.);
1229                 return VLC_SUCCESS;
1230             }
1231             return VLC_EGENERIC;
1232
1233         case DEMUX_GET_LENGTH:
1234             pi64 = (int64_t*)va_arg( args, int64_t * );
1235             if( p_sys->i_npt_length > 0 )
1236             {
1237                 *pi64 = (int64_t)((double)p_sys->i_npt_length * 1000000.0);
1238                 return VLC_SUCCESS;
1239             }
1240             return VLC_EGENERIC;
1241
1242         case DEMUX_GET_POSITION:
1243             pf = (double*)va_arg( args, double* );
1244             if( (p_sys->i_npt_length > 0) && (p_sys->i_npt > 0) )
1245             {
1246                 *pf = ( (double)p_sys->i_npt / (double)p_sys->i_npt_length );
1247                 return VLC_SUCCESS;
1248             }
1249             return VLC_EGENERIC;
1250
1251         case DEMUX_SET_POSITION:
1252         case DEMUX_SET_TIME:
1253             if( p_sys->rtsp && (p_sys->i_npt_length > 0) )
1254             {
1255                 int i;
1256                 float time;
1257
1258                 if( (i_query == DEMUX_SET_TIME) && (p_sys->i_npt > 0) )
1259                 {
1260                     i64 = (int64_t)va_arg( args, int64_t );
1261                     time = (float)((double)i64 / (double)1000000.0); /* in second */
1262                 }
1263                 else if( i_query == DEMUX_SET_TIME )
1264                     return VLC_EGENERIC;
1265                 else
1266                 {
1267                     f = (double)va_arg( args, double );
1268                     time = f * (double)p_sys->i_npt_length;   /* in second */
1269                 }
1270
1271                 if( !p_sys->rtsp->pauseMediaSession( *p_sys->ms ) ||
1272                     !p_sys->rtsp->playMediaSession( *p_sys->ms, time, -1, 1 ) )
1273                 {
1274                     msg_Err( p_demux, "PLAY failed %s",
1275                         p_sys->env->getResultMsg() );
1276                     return VLC_EGENERIC;
1277                 }
1278                 p_sys->i_pcr = 0;
1279
1280                 /* Retrieve RTP-Info values */
1281                 for( i = 0; i < p_sys->i_track; i++ )
1282                 {
1283                     p_sys->track[i]->b_rtcp_sync = false;
1284                     p_sys->track[i]->i_pts = 0;
1285                 }
1286
1287                 /* Retrieve the starttime if possible */
1288                 p_sys->i_npt = p_sys->i_npt_start = p_sys->ms->playStartTime();
1289
1290                 /* Retrieve the duration if possible */
1291                 if( p_sys->ms->playEndTime() > 0 )
1292                     p_sys->i_npt_length = p_sys->ms->playEndTime();
1293
1294                 msg_Dbg( p_demux, "seek start: %f stop:%f", p_sys->i_npt_start, p_sys->i_npt_length );
1295                 return VLC_SUCCESS;
1296             }
1297             return VLC_EGENERIC;
1298
1299         /* Special for access_demux */
1300         case DEMUX_CAN_PAUSE:
1301         case DEMUX_CAN_SEEK:
1302             pb = (bool*)va_arg( args, bool * );
1303             if( p_sys->rtsp && p_sys->i_npt_length > 0 )
1304                 /* Not always true, but will be handled in SET_PAUSE_STATE */
1305                 *pb = true;
1306             else
1307                 *pb = false;
1308             return VLC_SUCCESS;
1309
1310         case DEMUX_CAN_CONTROL_PACE:
1311             pb = (bool*)va_arg( args, bool * );
1312
1313 #if 1       /* Disable for now until we have a clock synchro algo
1314              * which works with something else than MPEG over UDP */
1315             *pb = false;
1316 #else
1317             *pb = true;
1318 #endif
1319             return VLC_SUCCESS;
1320
1321         case DEMUX_CAN_CONTROL_RATE:
1322             pb = (bool*)va_arg( args, bool * );
1323             pb2 = (bool*)va_arg( args, bool * );
1324
1325             *pb = (p_sys->rtsp != NULL) &&
1326                     (p_sys->i_npt_length > 0) &&
1327                     !var_GetBool( p_demux, "rtsp-kasenna" );
1328             *pb2 = false;
1329             return VLC_SUCCESS;
1330
1331         case DEMUX_SET_RATE:
1332         {
1333             double f_scale, f_old_scale;
1334
1335             if( !p_sys->rtsp || (p_sys->i_npt_length <= 0) ||
1336                 var_GetBool( p_demux, "rtsp-kasenna" ) )
1337                 return VLC_EGENERIC;
1338
1339             /* According to RFC 2326 p56 chapter 12.35 a RTSP server that
1340              * supports Scale:
1341              *
1342              * "[...] should try to approximate the viewing rate, but
1343              *  may restrict the range of scale values that it supports.
1344              *  The response MUST contain the actual scale value chosen
1345              *  by the server."
1346              *
1347              * Scale = 1 indicates normal play
1348              * Scale > 1 indicates fast forward
1349              * Scale < 1 && Scale > 0 indicates slow motion
1350              * Scale < 0 value indicates rewind
1351              */
1352
1353             pi_int = (int*)va_arg( args, int * );
1354             f_scale = (double)INPUT_RATE_DEFAULT / (*pi_int);
1355             f_old_scale = p_sys->ms->scale();
1356
1357             /* Passing -1 for the start and end time will mean liveMedia won't
1358              * create a Range: section for the RTSP message. The server should
1359              * pick up from the current position */
1360             if( !p_sys->rtsp->playMediaSession( *p_sys->ms, -1, -1, f_scale ) )
1361             {
1362                 msg_Err( p_demux, "PLAY with Scale %0.2f failed %s", f_scale,
1363                         p_sys->env->getResultMsg() );
1364                 return VLC_EGENERIC;
1365             }
1366
1367             if( p_sys->ms->scale() == f_old_scale )
1368             {
1369                 msg_Err( p_demux, "no scale change using old Scale %0.2f",
1370                           p_sys->ms->scale() );
1371                 return VLC_EGENERIC;
1372             }
1373
1374             /* ReSync the stream */
1375             p_sys->i_npt_start = 0;
1376             p_sys->i_pcr = 0;
1377             p_sys->i_npt = 0.0;
1378
1379             *pi_int = (int)( INPUT_RATE_DEFAULT / p_sys->ms->scale() );
1380             msg_Dbg( p_demux, "PLAY with new Scale %0.2f (%d)", p_sys->ms->scale(), (*pi_int) );
1381             return VLC_SUCCESS;
1382         }
1383
1384         case DEMUX_SET_PAUSE_STATE:
1385         {
1386             int i;
1387
1388             b_bool = (bool)va_arg( args, int );
1389             if( p_sys->rtsp == NULL )
1390                 return VLC_EGENERIC;
1391
1392             /* FIXME */
1393             if( ( b_bool && !p_sys->rtsp->pauseMediaSession( *p_sys->ms ) ) ||
1394                     ( !b_bool && !p_sys->rtsp->playMediaSession( *p_sys->ms,
1395                        -1 ) ) )
1396             {
1397                     msg_Err( p_demux, "PLAY or PAUSE failed %s", p_sys->env->getResultMsg() );
1398                     return VLC_EGENERIC;
1399             }
1400
1401             /* When we Pause, we'll need the TimeoutPrevention thread to
1402              * handle sending the "Keep Alive" message to the server.
1403              * Unfortunately Live555 isn't thread safe and so can't
1404              * do this normally while the main Demux thread is handling
1405              * a live stream. We end up with the Timeout thread blocking
1406              * waiting for a response from the server. So when we PAUSE
1407              * we set a flag that the TimeoutPrevention function will check
1408              * and if it's set, it will trigger the GET_PARAMETER message */
1409             if( b_bool && p_sys->p_timeout != NULL )
1410                 p_sys->p_timeout->b_handle_keep_alive = true;
1411             else if( !b_bool && p_sys->p_timeout != NULL )
1412                 p_sys->p_timeout->b_handle_keep_alive = false;
1413
1414             for( i = 0; !b_bool && i < p_sys->i_track; i++ )
1415             {
1416                 live_track_t *tk = p_sys->track[i];
1417                 tk->b_rtcp_sync = false;
1418                 tk->i_pts = 0;
1419                 p_sys->i_pcr = 0;
1420                 es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
1421             }
1422
1423             /* Retrieve the starttime if possible */
1424             p_sys->i_npt_start = p_sys->ms->playStartTime();
1425
1426             /* Retrieve the duration if possible */
1427             if( p_sys->ms->playEndTime() )
1428                 p_sys->i_npt_length = p_sys->ms->playEndTime();
1429
1430             msg_Dbg( p_demux, "pause start: %f stop:%f", p_sys->i_npt_start, p_sys->i_npt_length );
1431             return VLC_SUCCESS;
1432         }
1433         case DEMUX_GET_TITLE_INFO:
1434         case DEMUX_SET_TITLE:
1435         case DEMUX_SET_SEEKPOINT:
1436             return VLC_EGENERIC;
1437
1438         case DEMUX_GET_PTS_DELAY:
1439             pi64 = (int64_t*)va_arg( args, int64_t * );
1440             *pi64 = (int64_t)var_GetInteger( p_demux, "rtsp-caching" ) * 1000;
1441             return VLC_SUCCESS;
1442
1443         default:
1444             return VLC_EGENERIC;
1445     }
1446 }
1447
1448 /*****************************************************************************
1449  * RollOverTcp: reopen the rtsp into TCP mode
1450  * XXX: ugly, a lot of code are duplicated from Open()
1451  * This should REALLY be fixed
1452  *****************************************************************************/
1453 static int RollOverTcp( demux_t *p_demux )
1454 {
1455     demux_sys_t *p_sys = p_demux->p_sys;
1456     int i, i_return;
1457
1458     var_SetBool( p_demux, "rtsp-tcp", true );
1459
1460     /* We close the old RTSP session */
1461     for( i = 0; i < p_sys->i_track; i++ )
1462     {
1463         live_track_t *tk = p_sys->track[i];
1464
1465         if( tk->b_muxed ) stream_Delete( tk->p_out_muxed );
1466         if( tk->p_es ) es_out_Del( p_demux->out, tk->p_es );
1467         es_format_Clean( &tk->fmt );
1468         free( tk->p_buffer );
1469         free( tk );
1470     }
1471     if( p_sys->i_track ) free( p_sys->track );
1472     if( p_sys->p_out_asf ) stream_Delete( p_sys->p_out_asf );
1473
1474     p_sys->rtsp->teardownMediaSession( *p_sys->ms );
1475     Medium::close( p_sys->ms );
1476     RTSPClient::close( p_sys->rtsp );
1477
1478     p_sys->ms = NULL;
1479     p_sys->rtsp = NULL;
1480     p_sys->track = NULL;
1481     p_sys->i_track = 0;
1482     p_sys->b_no_data = true;
1483     p_sys->i_no_data_ti = 0;
1484
1485     /* Reopen rtsp client */
1486     if( ( i_return = Connect( p_demux ) ) != VLC_SUCCESS )
1487     {
1488         msg_Err( p_demux, "Failed to connect with rtsp://%s",
1489                  p_sys->psz_path );
1490         goto error;
1491     }
1492
1493     if( p_sys->p_sdp == NULL )
1494     {
1495         msg_Err( p_demux, "Failed to retrieve the RTSP Session Description" );
1496         goto error;
1497     }
1498
1499     if( ( i_return = SessionsSetup( p_demux ) ) != VLC_SUCCESS )
1500     {
1501         msg_Err( p_demux, "Nothing to play for rtsp://%s", p_sys->psz_path );
1502         goto error;
1503     }
1504
1505     if( ( i_return = Play( p_demux ) ) != VLC_SUCCESS )
1506         goto error;
1507
1508     return VLC_SUCCESS;
1509
1510 error:
1511     return VLC_EGENERIC;
1512 }
1513
1514
1515 /*****************************************************************************
1516  *
1517  *****************************************************************************/
1518 static void StreamRead( void *p_private, unsigned int i_size,
1519                         unsigned int i_truncated_bytes, struct timeval pts,
1520                         unsigned int duration )
1521 {
1522     live_track_t   *tk = (live_track_t*)p_private;
1523     demux_t        *p_demux = tk->p_demux;
1524     demux_sys_t    *p_sys = p_demux->p_sys;
1525     block_t        *p_block;
1526
1527     //msg_Dbg( p_demux, "pts: %d", pts.tv_sec );
1528
1529     int64_t i_pts = (int64_t)pts.tv_sec * INT64_C(1000000) +
1530         (int64_t)pts.tv_usec;
1531
1532     /* XXX Beurk beurk beurk Avoid having negative value XXX */
1533     i_pts &= INT64_C(0x00ffffffffffffff);
1534
1535     /* Retrieve NPT for this pts */
1536     tk->i_npt = tk->sub->getNormalPlayTime(pts);
1537
1538     if( tk->b_quicktime && tk->p_es == NULL )
1539     {
1540         QuickTimeGenericRTPSource *qtRTPSource =
1541             (QuickTimeGenericRTPSource*)tk->sub->rtpSource();
1542         QuickTimeGenericRTPSource::QTState &qtState = qtRTPSource->qtState;
1543         uint8_t *sdAtom = (uint8_t*)&qtState.sdAtom[4];
1544
1545         if( tk->fmt.i_cat == VIDEO_ES ) {
1546             if( qtState.sdAtomSize < 16 + 32 )
1547             {
1548                 /* invalid */
1549                 p_sys->event = 0xff;
1550                 tk->waiting = 0;
1551                 return;
1552             }
1553             tk->fmt.i_codec = VLC_FOURCC(sdAtom[0],sdAtom[1],sdAtom[2],sdAtom[3]);
1554             tk->fmt.video.i_width  = (sdAtom[28] << 8) | sdAtom[29];
1555             tk->fmt.video.i_height = (sdAtom[30] << 8) | sdAtom[31];
1556
1557             if( tk->fmt.i_codec == VLC_FOURCC('a', 'v', 'c', '1') )
1558             {
1559                 uint8_t *pos = (uint8_t*)qtRTPSource->qtState.sdAtom + 86;
1560                 uint8_t *endpos = (uint8_t*)qtRTPSource->qtState.sdAtom
1561                                   + qtRTPSource->qtState.sdAtomSize;
1562                 while (pos+8 < endpos) {
1563                     unsigned int atomLength = pos[0]<<24 | pos[1]<<16 | pos[2]<<8 | pos[3];
1564                     if( atomLength == 0 || atomLength > (unsigned int)(endpos-pos)) break;
1565                     if( memcmp(pos+4, "avcC", 4) == 0 &&
1566                         atomLength > 8 &&
1567                         atomLength <= INT_MAX )
1568                     {
1569                         tk->fmt.i_extra = atomLength-8;
1570                         tk->fmt.p_extra = malloc( tk->fmt.i_extra );
1571                         memcpy(tk->fmt.p_extra, pos+8, atomLength-8);
1572                         break;
1573                     }
1574                     pos += atomLength;
1575                 }
1576             }
1577             else
1578             {
1579                 tk->fmt.i_extra        = qtState.sdAtomSize - 16;
1580                 tk->fmt.p_extra        = malloc( tk->fmt.i_extra );
1581                 memcpy( tk->fmt.p_extra, &sdAtom[12], tk->fmt.i_extra );
1582             }
1583         }
1584         else {
1585             if( qtState.sdAtomSize < 4 )
1586             {
1587                 /* invalid */
1588                 p_sys->event = 0xff;
1589                 tk->waiting = 0;
1590                 return;
1591             }
1592             tk->fmt.i_codec = VLC_FOURCC(sdAtom[0],sdAtom[1],sdAtom[2],sdAtom[3]);
1593         }
1594         tk->p_es = es_out_Add( p_demux->out, &tk->fmt );
1595     }
1596
1597 #if 0
1598     fprintf( stderr, "StreamRead size=%d pts=%lld\n",
1599              i_size,
1600              pts.tv_sec * 1000000LL + pts.tv_usec );
1601 #endif
1602
1603     /* grow buffer if it looks like buffer is too small, but don't eat
1604      * up all the memory on strange streams */
1605     if( i_truncated_bytes > 0 )
1606     {
1607         if( tk->i_buffer < 2000000 )
1608         {
1609             void *p_tmp;
1610             msg_Dbg( p_demux, "lost %d bytes", i_truncated_bytes );
1611             msg_Dbg( p_demux, "increasing buffer size to %d", tk->i_buffer * 2 );
1612             p_tmp = realloc( tk->p_buffer, tk->i_buffer * 2 );
1613             if( p_tmp == NULL )
1614             {
1615                 msg_Warn( p_demux, "realloc failed" );
1616             }
1617             else
1618             {
1619                 tk->p_buffer = (uint8_t*)p_tmp;
1620                 tk->i_buffer *= 2;
1621             }
1622         }
1623
1624         if( tk->b_discard_trunc )
1625         {
1626             p_sys->event = 0xff;
1627             tk->waiting = 0;
1628             return;
1629         }
1630     }
1631
1632     assert( i_size <= tk->i_buffer );
1633
1634     if( tk->fmt.i_codec == VLC_CODEC_AMR_NB ||
1635         tk->fmt.i_codec == VLC_CODEC_AMR_WB )
1636     {
1637         AMRAudioSource *amrSource = (AMRAudioSource*)tk->sub->readSource();
1638
1639         p_block = block_New( p_demux, i_size + 1 );
1640         p_block->p_buffer[0] = amrSource->lastFrameHeader();
1641         memcpy( p_block->p_buffer + 1, tk->p_buffer, i_size );
1642     }
1643     else if( tk->fmt.i_codec == VLC_CODEC_H261 )
1644     {
1645         H261VideoRTPSource *h261Source = (H261VideoRTPSource*)tk->sub->rtpSource();
1646         uint32_t header = h261Source->lastSpecialHeader();
1647         p_block = block_New( p_demux, i_size + 4 );
1648         memcpy( p_block->p_buffer, &header, 4 );
1649         memcpy( p_block->p_buffer + 4, tk->p_buffer, i_size );
1650
1651         if( tk->sub->rtpSource()->curPacketMarkerBit() )
1652             p_block->i_flags |= BLOCK_FLAG_END_OF_FRAME;
1653     }
1654     else if( tk->fmt.i_codec == VLC_CODEC_H264 )
1655     {
1656         if( (tk->p_buffer[0] & 0x1f) >= 24 )
1657             msg_Warn( p_demux, "unsupported NAL type for H264" );
1658
1659         /* Normal NAL type */
1660         p_block = block_New( p_demux, i_size + 4 );
1661         p_block->p_buffer[0] = 0x00;
1662         p_block->p_buffer[1] = 0x00;
1663         p_block->p_buffer[2] = 0x00;
1664         p_block->p_buffer[3] = 0x01;
1665         memcpy( &p_block->p_buffer[4], tk->p_buffer, i_size );
1666     }
1667     else if( tk->b_asf )
1668     {
1669         int i_copy = __MIN( p_sys->asfh.i_min_data_packet_size, (int)i_size );
1670         p_block = block_New( p_demux, p_sys->asfh.i_min_data_packet_size );
1671
1672         memcpy( p_block->p_buffer, tk->p_buffer, i_copy );
1673     }
1674     else
1675     {
1676         p_block = block_New( p_demux, i_size );
1677         memcpy( p_block->p_buffer, tk->p_buffer, i_size );
1678     }
1679
1680     if( p_sys->i_pcr < i_pts )
1681     {
1682         p_sys->i_pcr = i_pts;
1683     }
1684
1685     if( (i_pts != tk->i_pts) && (!tk->b_muxed) )
1686     {
1687         p_block->i_pts = i_pts;
1688     }
1689
1690     /* Update our global npt value */
1691     if( tk->i_npt > 0 && tk->i_npt > p_sys->i_npt && tk->i_npt < p_sys->i_npt_length)
1692         p_sys->i_npt = tk->i_npt;
1693
1694     if( !tk->b_muxed )
1695     {
1696         /*FIXME: for h264 you should check that packetization-mode=1 in sdp-file */
1697         p_block->i_dts = ( tk->fmt.i_codec == VLC_CODEC_MPGV ) ? 0 : i_pts;
1698     }
1699
1700     if( tk->b_muxed )
1701     {
1702         stream_DemuxSend( tk->p_out_muxed, p_block );
1703     }
1704     else if( tk->b_asf )
1705     {
1706         stream_DemuxSend( p_sys->p_out_asf, p_block );
1707     }
1708     else
1709     {
1710         es_out_Send( p_demux->out, tk->p_es, p_block );
1711     }
1712
1713     /* warn that's ok */
1714     p_sys->event = 0xff;
1715
1716     /* we have read data */
1717     tk->waiting = 0;
1718     p_demux->p_sys->b_no_data = false;
1719     p_demux->p_sys->i_no_data_ti = 0;
1720
1721     if( i_pts > 0 && !tk->b_muxed )
1722     {
1723         tk->i_pts = i_pts;
1724     }
1725 }
1726
1727 /*****************************************************************************
1728  *
1729  *****************************************************************************/
1730 static void StreamClose( void *p_private )
1731 {
1732     live_track_t   *tk = (live_track_t*)p_private;
1733     demux_t        *p_demux = tk->p_demux;
1734     demux_sys_t    *p_sys = p_demux->p_sys;
1735
1736     msg_Dbg( p_demux, "StreamClose" );
1737
1738     p_sys->event = 0xff;
1739     p_demux->b_error = true;
1740 }
1741
1742
1743 /*****************************************************************************
1744  *
1745  *****************************************************************************/
1746 static void TaskInterrupt( void *p_private )
1747 {
1748     demux_t *p_demux = (demux_t*)p_private;
1749
1750     p_demux->p_sys->i_no_data_ti++;
1751
1752     /* Avoid lock */
1753     p_demux->p_sys->event = 0xff;
1754 }
1755
1756 /*****************************************************************************
1757  *
1758  *****************************************************************************/
1759 static void* TimeoutPrevention( void *p_data )
1760 {
1761     timeout_thread_t *p_timeout = (timeout_thread_t *)p_data;
1762
1763     for( ;; )
1764     {
1765         /* Voodoo (= no) thread safety here! *Ahem* */
1766         if( p_timeout->b_handle_keep_alive )
1767         {
1768             char *psz_bye = NULL;
1769             int canc = vlc_savecancel ();
1770
1771             p_timeout->p_sys->rtsp->getMediaSessionParameter( *p_timeout->p_sys->ms, NULL, psz_bye );
1772             vlc_restorecancel (canc);
1773         }
1774         p_timeout->p_sys->b_timeout_call = !p_timeout->b_handle_keep_alive;
1775
1776         msleep (((int64_t)p_timeout->p_sys->i_timeout - 2) * CLOCK_FREQ);
1777     }
1778     assert(0); /* dead code */
1779 }
1780
1781 /*****************************************************************************
1782  *
1783  *****************************************************************************/
1784 static int ParseASF( demux_t *p_demux )
1785 {
1786     demux_sys_t    *p_sys = p_demux->p_sys;
1787
1788     const char *psz_marker = "a=pgmpu:data:application/vnd.ms.wms-hdr.asfv1;base64,";
1789     char *psz_asf = strcasestr( p_sys->p_sdp, psz_marker );
1790     char *psz_end;
1791     block_t *p_header;
1792
1793     /* Parse the asf header */
1794     if( psz_asf == NULL )
1795         return VLC_EGENERIC;
1796
1797     psz_asf += strlen( psz_marker );
1798     psz_asf = strdup( psz_asf );    /* Duplicate it */
1799     psz_end = strchr( psz_asf, '\n' );
1800
1801     while( psz_end > psz_asf && ( *psz_end == '\n' || *psz_end == '\r' ) )
1802         *psz_end-- = '\0';
1803
1804     if( psz_asf >= psz_end )
1805     {
1806         free( psz_asf );
1807         return VLC_EGENERIC;
1808     }
1809
1810     /* Always smaller */
1811     p_header = block_New( p_demux, psz_end - psz_asf );
1812     p_header->i_buffer = vlc_b64_decode_binary_to_buffer( p_header->p_buffer,
1813                                                p_header->i_buffer, psz_asf );
1814     //msg_Dbg( p_demux, "Size=%d Hdrb64=%s", p_header->i_buffer, psz_asf );
1815     if( p_header->i_buffer <= 0 )
1816     {
1817         free( psz_asf );
1818         return VLC_EGENERIC;
1819     }
1820
1821     /* Parse it to get packet size */
1822     asf_HeaderParse( &p_sys->asfh, p_header->p_buffer, p_header->i_buffer );
1823
1824     /* Send it to demuxer */
1825     stream_DemuxSend( p_sys->p_out_asf, p_header );
1826
1827     free( psz_asf );
1828     return VLC_SUCCESS;
1829 }
1830
1831
1832 static unsigned char* parseH264ConfigStr( char const* configStr,
1833                                           unsigned int& configSize )
1834 {
1835     char *dup, *psz;
1836     size_t i_records = 1;
1837
1838     configSize = 0;
1839
1840     if( configStr == NULL || *configStr == '\0' )
1841         return NULL;
1842
1843     psz = dup = strdup( configStr );
1844
1845     /* Count the number of commas */
1846     for( psz = dup; *psz != '\0'; ++psz )
1847     {
1848         if( *psz == ',')
1849         {
1850             ++i_records;
1851             *psz = '\0';
1852         }
1853     }
1854
1855     size_t configMax = 5*strlen(dup);
1856     unsigned char *cfg = new unsigned char[configMax];
1857     psz = dup;
1858     for( size_t i = 0; i < i_records; ++i )
1859     {
1860         cfg[configSize++] = 0x00;
1861         cfg[configSize++] = 0x00;
1862         cfg[configSize++] = 0x00;
1863         cfg[configSize++] = 0x01;
1864
1865         configSize += vlc_b64_decode_binary_to_buffer( cfg+configSize,
1866                                           configMax-configSize, psz );
1867         psz += strlen(psz)+1;
1868     }
1869
1870     free( dup );
1871     return cfg;
1872 }