Commit 994923ec authored by Michael Niedermayer's avatar Michael Niedermayer

dwt: switch to av_assert

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 58825a18
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
*/ */
#include "libavutil/attributes.h" #include "libavutil/attributes.h"
#include "libavutil/avassert.h"
#include "dsputil.h" #include "dsputil.h"
#include "dwt.h" #include "dwt.h"
#include "libavcodec/x86/dwt.h" #include "libavcodec/x86/dwt.h"
...@@ -62,8 +63,8 @@ IDWTELEM *ff_slice_buffer_load_line(slice_buffer *buf, int line) ...@@ -62,8 +63,8 @@ IDWTELEM *ff_slice_buffer_load_line(slice_buffer *buf, int line)
{ {
IDWTELEM *buffer; IDWTELEM *buffer;
assert(buf->data_stack_top >= 0); av_assert0(buf->data_stack_top >= 0);
// assert(!buf->line[line]); // av_assert1(!buf->line[line]);
if (buf->line[line]) if (buf->line[line])
return buf->line[line]; return buf->line[line];
...@@ -78,8 +79,8 @@ void ff_slice_buffer_release(slice_buffer *buf, int line) ...@@ -78,8 +79,8 @@ void ff_slice_buffer_release(slice_buffer *buf, int line)
{ {
IDWTELEM *buffer; IDWTELEM *buffer;
assert(line >= 0 && line < buf->line_count); av_assert1(line >= 0 && line < buf->line_count);
assert(buf->line[line]); av_assert1(buf->line[line]);
buffer = buf->line[line]; buffer = buf->line[line];
buf->data_stack_top++; buf->data_stack_top++;
...@@ -188,7 +189,7 @@ static av_always_inline void liftS(DWTELEM *dst, DWTELEM *src, DWTELEM *ref, ...@@ -188,7 +189,7 @@ static av_always_inline void liftS(DWTELEM *dst, DWTELEM *src, DWTELEM *ref,
const int w = (width >> 1) - 1 + (highpass & width); const int w = (width >> 1) - 1 + (highpass & width);
int i; int i;
assert(shift == 4); av_assert1(shift == 4);
#define LIFTS(src, ref, inv) \ #define LIFTS(src, ref, inv) \
((inv) ? (src) + (((ref) + 4 * (src)) >> shift) \ ((inv) ? (src) + (((ref) + 4 * (src)) >> shift) \
: -((-16 * (src) + (ref) + add / \ : -((-16 * (src) + (ref) + add / \
...@@ -222,7 +223,7 @@ static av_always_inline void inv_liftS(IDWTELEM *dst, IDWTELEM *src, ...@@ -222,7 +223,7 @@ static av_always_inline void inv_liftS(IDWTELEM *dst, IDWTELEM *src,
const int w = (width >> 1) - 1 + (highpass & width); const int w = (width >> 1) - 1 + (highpass & width);
int i; int i;
assert(shift == 4); av_assert1(shift == 4);
#define LIFTS(src, ref, inv) \ #define LIFTS(src, ref, inv) \
((inv) ? (src) + (((ref) + 4 * (src)) >> shift) \ ((inv) ? (src) + (((ref) + 4 * (src)) >> shift) \
: -((-16 * (src) + (ref) + add / \ : -((-16 * (src) + (ref) + add / \
...@@ -931,7 +932,7 @@ static inline int w_c(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, ...@@ -931,7 +932,7 @@ static inline int w_c(void *v, uint8_t *pix1, uint8_t *pix2, int line_size,
ff_spatial_dwt(tmp, tmp2, w, h, 32, type, dec_count); ff_spatial_dwt(tmp, tmp2, w, h, 32, type, dec_count);
s = 0; s = 0;
assert(w == h); av_assert1(w == h);
for (level = 0; level < dec_count; level++) for (level = 0; level < dec_count; level++)
for (ori = level ? 1 : 0; ori < 4; ori++) { for (ori = level ? 1 : 0; ori < 4; ori++) {
int size = w >> (dec_count - level); int size = w >> (dec_count - level);
...@@ -946,7 +947,7 @@ static inline int w_c(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, ...@@ -946,7 +947,7 @@ static inline int w_c(void *v, uint8_t *pix1, uint8_t *pix2, int line_size,
s += FFABS(v); s += FFABS(v);
} }
} }
assert(s >= 0); av_assert1(s >= 0);
return s >> 9; return s >> 9;
} }
......
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