Commit 80cbf137 authored by Paul B Mahol's avatar Paul B Mahol

avformat/rtpdec_qdm2: change assert to av_assert0()

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 1fa637d2
......@@ -189,7 +189,7 @@ static int qdm2_restore_block(PayloadContext *qdm, AVStream *st, AVPacket *pkt)
uint8_t *p, *csum_pos = NULL;
/* create packet to hold subpkts into a superblock */
assert(qdm->cache > 0);
av_assert0(qdm->cache > 0);
for (n = 0; n < 0x80; n++)
if (qdm->len[n] > 0)
break;
......
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