projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4348571
)
matroskadec: invert a test
author
Aurelien Jacobs
<aurel@gnuage.org>
Tue, 5 Aug 2008 00:40:46 +0000
(
00:40
+0000)
committer
Aurelien Jacobs
<aurel@gnuage.org>
Tue, 5 Aug 2008 00:40:46 +0000
(
00:40
+0000)
Originally committed as revision 14567 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavformat/matroskadec.c
patch
|
blob
|
history
diff --git
a/libavformat/matroskadec.c
b/libavformat/matroskadec.c
index
6b1ff97
..
abd8cc2
100644
(file)
--- a/
libavformat/matroskadec.c
+++ b/
libavformat/matroskadec.c
@@
-1638,7
+1638,10
@@
matroska_read_header (AVFormatContext *s,
matroska_execute_seekhead(matroska);
/* Have we found a cluster? */
- if (ebml_peek_id(matroska, NULL) == MATROSKA_ID_CLUSTER) {
+ if (ebml_peek_id(matroska, NULL) != MATROSKA_ID_CLUSTER)
+ return -1;
+
+ {
MatroskaTrack *tracks = matroska->tracks.elem;
int i, j;
AVStream *st;