Commit f657d495 authored by Michael Niedermayer's avatar Michael Niedermayer

rtpdec_qdm2: change one assert to av_assert0

Failure of this assert could lead to hard to debug behavior
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e47024d7
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
*/ */
#include <string.h> #include <string.h>
#include "libavutil/avassert.h"
#include "libavutil/intreadwrite.h" #include "libavutil/intreadwrite.h"
#include "libavcodec/avcodec.h" #include "libavcodec/avcodec.h"
#include "rtp.h" #include "rtp.h"
...@@ -193,7 +194,7 @@ static int qdm2_restore_block(PayloadContext *qdm, AVStream *st, AVPacket *pkt) ...@@ -193,7 +194,7 @@ static int qdm2_restore_block(PayloadContext *qdm, AVStream *st, AVPacket *pkt)
for (n = 0; n < 0x80; n++) for (n = 0; n < 0x80; n++)
if (qdm->len[n] > 0) if (qdm->len[n] > 0)
break; break;
assert(n < 0x80); av_assert0(n < 0x80);
if ((res = av_new_packet(pkt, qdm->block_size)) < 0) if ((res = av_new_packet(pkt, qdm->block_size)) < 0)
return res; return res;
......
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