mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-11 06:58:18 +00: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;
|
uint8_t *p, *csum_pos = NULL;
|
||||||
|
|
||||||
/* create packet to hold subpkts into a superblock */
|
/* create packet to hold subpkts into a superblock */
|
||||||
assert(qdm->cache > 0);
|
av_assert0(qdm->cache > 0);
|
||||||
for (n = 0; n < 0x80; n++)
|
for (n = 0; n < 0x80; n++)
|
||||||
if (qdm->len[n] > 0)
|
if (qdm->len[n] > 0)
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user