live555.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:65k
源码类别:

midi

开发平台:

Unix_Linux

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