Commit a636a56b authored by Aurelien Jacobs's avatar Aurelien Jacobs

matroskadec: invert a test

Originally committed as revision 14567 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4348571b
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment