Commit fdb94444 authored by Anton Khirnov's avatar Anton Khirnov Committed by Mans Rullgard

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

Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent 3e5cce81
......@@ -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);
......
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