mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avformat/rtpdec_qdm2: change assert to av_assert0()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
1fa637d2ef
commit
80cbf13725
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user