diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2013-05-05 09:46:37 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-05-07 10:55:15 +0200 |
commit | 9fef5d55538ca5df06b26268fafc0559b8f9d219 (patch) | |
tree | b1a4cb7fd74b1e730760005fd5487f26c8a33f45 | |
parent | 6e2fb5cd73ed92e87e05dc7578569a31db2c90f4 (diff) | |
download | ffmpeg-9fef5d55538ca5df06b26268fafc0559b8f9d219.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>
(cherry picked from commit 762d4335aec2e5299a06bfbce15d21336af19464)
-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 a270f0dfc7..19ebe78907 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -2307,7 +2307,6 @@ static int matroska_parse_cluster_incremental(MatroskaDemuxContext *matroska) } } - if (res < 0) matroska->done = 1; return res; } |