mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
matroskadec: fix stupid typo (!= -> ==)
Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
parent
3e5cce81e7
commit
fdb94444be
@ -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…
Reference in New Issue
Block a user