Commit 9db201cc authored by Laurent Aimar's avatar Laurent Aimar

* ts.c: module name is now ts. (thx thedj).

parent 5291e759
...@@ -292,14 +292,14 @@ static int Open( vlc_object_t *p_this ) ...@@ -292,14 +292,14 @@ static int Open( vlc_object_t *p_this )
} }
if( i_sync >= i_peek ) if( i_sync >= i_peek )
{ {
if( strcmp( p_demux->psz_demux, "ts2" ) ) if( strcmp( p_demux->psz_demux, "ts" ) )
{ {
msg_Warn( p_demux, "TS module discarded" ); msg_Warn( p_demux, "TS module discarded" );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
msg_Warn( p_demux, "this does not look like a TS stream, continuing" ); msg_Warn( p_demux, "this does not look like a TS stream, continuing" );
} }
if( strcmp( p_demux->psz_demux, "ts2" ) ) if( strcmp( p_demux->psz_demux, "ts" ) )
{ {
/* Check next 3 sync points */ /* Check next 3 sync points */
i_peek = 188*3 + 1 + i_sync; i_peek = 188*3 + 1 + i_sync;
......
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