]> git.sesse.net Git - vlc/commitdiff
* ts.c: module name is now ts. (thx thedj).
authorLaurent Aimar <fenrir@videolan.org>
Sun, 6 Jun 2004 13:55:40 +0000 (13:55 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Sun, 6 Jun 2004 13:55:40 +0000 (13:55 +0000)
modules/demux/ts.c

index e0a96f3387d8714f7e202009e72fbd1a8b1bd1d7..91eef7d77b0f303f1dcc83d7e2aa3a13e293413d 100644 (file)
@@ -292,14 +292,14 @@ static int Open( vlc_object_t *p_this )
     }
     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" );
             return VLC_EGENERIC;
         }
         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 */
         i_peek = 188*3 + 1 + i_sync;