Browse Source

matroskadec: invert a test

Originally committed as revision 14567 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Aurelien Jacobs 17 years ago
parent
commit
a636a56bf4
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      libavformat/matroskadec.c

+ 4
- 1
libavformat/matroskadec.c View File

@@ -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;


Loading…
Cancel
Save