Commit 515a10ab authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* No longer force ts2 for Kasenna udp multicast. ts2 is now ts.

parent 347e1ecf
......@@ -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 );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment