diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-07-10 20:48:23 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-07-10 22:04:03 +0100 |
commit | fdb94444beb9c32beb8cfc70656f5115d9eec58b (patch) | |
tree | 0b18b5127bfe109c15187c2a7b40993d306b70ce | |
parent | 3e5cce81e77fae6af91fcf8de11dafe9c8b1744d (diff) | |
download | ffmpeg-fdb94444beb9c32beb8cfc70656f5115d9eec58b.tar.gz |
matroskadec: fix stupid typo (!= -> ==)
Signed-off-by: Mans Rullgard <mans@mansr.com>
-rw-r--r-- | libavformat/matroskadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index e1e555df80..70bb765ab4 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -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); |