[FFmpeg-cvslog] rtpdec_qdm2: change one assert to av_assert0

Michael Niedermayer git at videolan.org
Sat Oct 13 03:38:57 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Oct 13 02:48:07 2012 +0200| [f657d495b04db3b5af301d989c5ebd2eeb3ad13d] | committer: Michael Niedermayer

rtpdec_qdm2: change one assert to av_assert0

Failure of this assert could lead to hard to debug behavior

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f657d495b04db3b5af301d989c5ebd2eeb3ad13d
---

 libavformat/rtpdec_qdm2.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavformat/rtpdec_qdm2.c b/libavformat/rtpdec_qdm2.c
index f203fcf..3a8ffd5 100644
--- a/libavformat/rtpdec_qdm2.c
+++ b/libavformat/rtpdec_qdm2.c
@@ -26,6 +26,7 @@
  */
 
 #include <string.h>
+#include "libavutil/avassert.h"
 #include "libavutil/intreadwrite.h"
 #include "libavcodec/avcodec.h"
 #include "rtp.h"
@@ -193,7 +194,7 @@ static int qdm2_restore_block(PayloadContext *qdm, AVStream *st, AVPacket *pkt)
     for (n = 0; n < 0x80; n++)
         if (qdm->len[n] > 0)
             break;
-    assert(n < 0x80);
+    av_assert0(n < 0x80);
 
     if ((res = av_new_packet(pkt, qdm->block_size)) < 0)
         return res;



More information about the ffmpeg-cvslog mailing list