[vlc-commits] TS demux: call Demux directly
Rafaël Carré
git at videolan.org
Fri May 9 18:08:40 CEST 2014
vlc | branch: master | Rafaël Carré <funman at videolan.org> | Fri May 9 10:46:41 2014 +0200| [79dddb004887e170e6e1d5b2563f11581f8b4c7c] | committer: Rafaël Carré
TS demux: call Demux directly
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=79dddb004887e170e6e1d5b2563f11581f8b4c7c
---
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 b82c515..8324b90 100644
--- a/modules/demux/ts.c
+++ b/modules/demux/ts.c
@@ -788,7 +788,7 @@ static int Open( vlc_object_t *p_this )
while( p_sys->i_pmt_es <= 0 && vlc_object_alive( p_demux ) )
{
- if( p_demux->pf_demux( p_demux ) != 1 )
+ if( Demux( p_demux ) != 1 )
break;
}
return VLC_SUCCESS;
More information about the vlc-commits
mailing list