[FFmpeg-cvslog] put_bits: switch assert to av_assert2()

Michael Niedermayer git at videolan.org
Sat Apr 7 08:18:33 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Apr  7 07:58:16 2012 +0200| [ab553612e7f8d23b9dd033f37d45e191b02a04d6] | committer: Michael Niedermayer

put_bits: switch assert to av_assert2()

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

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

 libavcodec/put_bits.h |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/libavcodec/put_bits.h b/libavcodec/put_bits.h
index 9256e7f..132d133 100644
--- a/libavcodec/put_bits.h
+++ b/libavcodec/put_bits.h
@@ -33,6 +33,7 @@
 #include "libavutil/common.h"
 #include "libavutil/intreadwrite.h"
 #include "libavutil/log.h"
+#include "libavutil/avassert.h"
 #include "mathops.h"
 #include "config.h"
 
@@ -131,7 +132,7 @@ static inline void put_bits(PutBitContext *s, int n, unsigned int value)
     int bit_left;
 
     //    printf("put_bits=%d %x\n", n, value);
-    assert(n <= 31 && value < (1U << n));
+    av_assert2(n <= 31 && value < (1U << n));
 
     bit_buf = s->bit_buf;
     bit_left = s->bit_left;



More information about the ffmpeg-cvslog mailing list