diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2013-05-05 09:46:37 +0200 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2013-05-07 05:30:19 +0200 |
commit | 762d4335aec2e5299a06bfbce15d21336af19464 (patch) | |
tree | 7935a0a4253b3c76bcb40cbcef0678cf199fd221 | |
parent | 004779cc59ae6b649e20aa260cd4a4d2e1f4bc48 (diff) | |
download | ffmpeg-762d4335aec2e5299a06bfbce15d21336af19464.tar.gz |
matroska: set "done" only during resync fail.
Fixes playback of test7.mkv validation test file.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-rw-r--r-- | libavformat/matroskadec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index ca877c3f5f..648941e57f 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -2420,7 +2420,6 @@ static int matroska_parse_cluster_incremental(MatroskaDemuxContext *matroska) } } - if (res < 0) matroska->done = 1; return res; } |