Browse Source

matroskadec: fix stupid typo (!= -> ==)

Signed-off-by: Mans Rullgard <mans@mansr.com>
tags/n0.9
Anton Khirnov Mans Rullgard 14 years ago
parent
commit
fdb94444be
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/matroskadec.c

+ 1
- 1
libavformat/matroskadec.c View File

@@ -1200,7 +1200,7 @@ static void matroska_parse_cues(MatroskaDemuxContext *matroska) {
int i, j;

for (i = 0; i < seekhead_list->nb_elem; i++)
if (seekhead[i].id != MATROSKA_ID_CUES)
if (seekhead[i].id == MATROSKA_ID_CUES)
break;
assert(i <= seekhead_list->nb_elem);



Loading…
Cancel
Save