summaryrefslogtreecommitdiff
path: root/libavcodec/snow.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-03-27 22:55:49 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-03-27 23:06:29 +0100
commite9d3b40052930813ac02f87a15c723978f213454 (patch)
tree4a381443514f061e44d0a34b342fae627ec719e5 /libavcodec/snow.c
parent460d30406bcac4de89f5092733d713943e43ded1 (diff)
snow: drop commented out asserts
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/snow.c')
-rw-r--r--libavcodec/snow.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c
index de19687a97..9f6399c78a 100644
--- a/libavcodec/snow.c
+++ b/libavcodec/snow.c
@@ -352,8 +352,6 @@ void ff_snow_pred_block(SnowContext *s, uint8_t *dst, uint8_t *tmp, int stride,
av_assert2(s->chroma_h_shift == s->chroma_v_shift); // only one mv_scale
-// assert(b_w == b_h || 2*b_w == b_h || b_w == 2*b_h);
-// assert(!(b_w&(b_w-1)));
av_assert2(b_w>1 && b_h>1);
av_assert2((tab_index>=0 && tab_index<4) || b_w==32);
if((dx&3) || (dy&3) || !(b_w == b_h || 2*b_w == b_h || b_w == 2*b_h) || (b_w&(b_w-1)) || !s->plane[plane_index].fast_mc )