diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-22 18:04:17 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-22 18:04:17 +0100 |
commit | ac75e0c755245ad739c812a2c7aa43584d488da4 (patch) | |
tree | 5b824da33e95752476605a54abb3a40b947aa56d | |
parent | 076c1c956c55887ca63a797baf0143f56dd30879 (diff) | |
download | ffmpeg-ac75e0c755245ad739c812a2c7aa43584d488da4.tar.gz |
matroskadec: switch to av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 eea29daba0..740459cff9 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -1442,7 +1442,7 @@ static void matroska_parse_cues(MatroskaDemuxContext *matroska) { for (i = 0; i < seekhead_list->nb_elem; i++) if (seekhead[i].id == MATROSKA_ID_CUES) break; - assert(i <= seekhead_list->nb_elem); + av_assert1(i <= seekhead_list->nb_elem); if (matroska_parse_seekhead_entry(matroska, i) < 0) matroska->cues_parsing_deferred = -1; |