[vlc-commits] demux: ts: fix wrong flush condition
Francois Cartegnie
git at videolan.org
Sun Mar 15 22:03:53 CET 2015
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Sun Mar 15 14:04:14 2015 +0100| [a9c311a05fde8e28384c84ca78904677fe508dbd] | committer: Francois Cartegnie
demux: ts: fix wrong flush condition
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a9c311a05fde8e28384c84ca78904677fe508dbd
---
modules/demux/ts.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/demux/ts.c b/modules/demux/ts.c
index 049b374..8e97b89 100644
--- a/modules/demux/ts.c
+++ b/modules/demux/ts.c
@@ -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 )
More information about the vlc-commits
mailing list