]> git.sesse.net Git - vlc/commitdiff
* No longer force ts2 for Kasenna udp multicast. ts2 is now ts.
authorDerk-Jan Hartman <hartman@videolan.org>
Sun, 6 Jun 2004 13:13:06 +0000 (13:13 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Sun, 6 Jun 2004 13:13:06 +0000 (13:13 +0000)
modules/demux/sgimb.c

index 6e118dbc4b65da1daaf0bcb5e5aadef7f38a8d2e..8fba62c7c997f8093e5ab013864b46adb42414e9 100644 (file)
@@ -295,8 +295,8 @@ static int Demux ( demux_t *p_demux )
     {
         char *temp;
 
-        temp = (char *)malloc( sizeof("udp/ts2://@000.000.000.000:123456789" ) );
-        sprintf( temp, "udp/ts2://@" "%s:%i", p_sys->psz_mcast_ip, p_sys->i_mcast_port );
+        temp = (char *)malloc( sizeof("udp://@000.000.000.000:123456789" ) );
+        sprintf( temp, "udp://@" "%s:%i", p_sys->psz_mcast_ip, p_sys->i_mcast_port );
         if( p_sys->psz_uri ) free( p_sys->psz_uri );
         p_sys->psz_uri = strdup( temp );
         free( temp );