Commit e9172f8b authored by Laurent Aimar's avatar Laurent Aimar

Force TS demuxer when using BDA access.

It seems that BDA does not filter out corrupted packets so our demuxer
detection can be fooled by bad reception.
parent ba3c22cf
......@@ -399,9 +399,11 @@ static int Open( vlc_object_t *p_this )
i_ret = dvb_SubmitATSCTuneRequest( p_access );
}
if( i_ret != VLC_SUCCESS )
if( !i_ret )
p_access->psz_demux = strdup( "ts" );
else
msg_Warn( p_access, "DVB_Open: Unsupported Network %s",
p_access->psz_access);
p_access->psz_access);
return i_ret;
}
......
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