]> git.sesse.net Git - vlc/commitdiff
demux: ts: fix wrong flush condition
authorFrancois Cartegnie <fcvlcdev@free.fr>
Sun, 15 Mar 2015 13:04:14 +0000 (14:04 +0100)
committerFrancois Cartegnie <fcvlcdev@free.fr>
Sun, 15 Mar 2015 13:08:40 +0000 (14:08 +0100)
modules/demux/ts.c

index 049b374279dff399b28f19f3169f373e41d390a8..8e97b893377e582669b9ebacac6e593641679c12 100644 (file)
@@ -2631,7 +2631,7 @@ static void ReadyQueuesPostSeek( demux_t *p_demux )
             if( pid->type != TYPE_PES )
                 continue;
 
-            if( !pid->u.p_pes->es.id )
+            if( pid->u.p_pes->es.id )
             {
                 block_t *p_block = block_Alloc(1);
                 if( p_block )