[vlc-commits] demux: asf: don't warn on stop.
Francois Cartegnie
git at videolan.org
Thu Jan 16 19:35:42 CET 2014
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Thu Jan 16 19:27:18 2014 +0100| [1a774ee2dbc4339982d90432d2a2325dcc3031eb] | committer: Francois Cartegnie
demux: asf: don't warn on stop.
Can still have unsent blocks.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1a774ee2dbc4339982d90432d2a2325dcc3031eb
---
modules/demux/asf/asf.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/modules/demux/asf/asf.c b/modules/demux/asf/asf.c
index 717c9bc..62795f6 100644
--- a/modules/demux/asf/asf.c
+++ b/modules/demux/asf/asf.c
@@ -1596,10 +1596,8 @@ static void DemuxEnd( demux_t *p_demux )
if( tk )
{
if( tk->p_frame )
- {
- msg_Warn( p_demux, "Still one frame for track %u, something is wrong", i );
block_ChainRelease( tk->p_frame );
- }
+
if( tk->p_es )
{
es_out_Del( p_demux->out, tk->p_es );
More information about the vlc-commits
mailing list