[FFmpeg-cvslog] lsp: use av_assert

Michael Niedermayer git at videolan.org
Thu Jun 28 00:15:09 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Jun 28 00:07:22 2012 +0200| [d1c74ca2bee269ef5da4069d3d3617d8e503731e] | committer: Michael Niedermayer

lsp: use av_assert

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

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

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

diff --git a/libavcodec/lsp.c b/libavcodec/lsp.c
index a5a86c8..c2d0c6d 100644
--- a/libavcodec/lsp.c
+++ b/libavcodec/lsp.c
@@ -29,6 +29,7 @@
 #include "lsp.h"
 #include "celp_math.h"
 #include "libavcodec/mips/lsp_mips.h"
+#include "libavutil/avassert.h"
 
 
 void ff_acelp_reorder_lsf(int16_t* lsfq, int lsfq_min_distance, int lsfq_min, int lsfq_max, int lp_order)
@@ -188,7 +189,7 @@ void ff_acelp_lspd2lpc(const double *lsp, float *lpc, int lp_half_order)
     double pa[MAX_LP_HALF_ORDER+1], qa[MAX_LP_HALF_ORDER+1];
     float *lpc2 = lpc + (lp_half_order << 1) - 1;
 
-    assert(lp_half_order <= MAX_LP_HALF_ORDER);
+    av_assert2(lp_half_order <= MAX_LP_HALF_ORDER);
 
     ff_lsp2polyf(lsp,     pa, lp_half_order);
     ff_lsp2polyf(lsp + 1, qa, lp_half_order);



More information about the ffmpeg-cvslog mailing list