summaryrefslogtreecommitdiff
path: root/libavcodec/motion_est.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-12-21 15:21:44 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-12-21 15:21:44 +0000
commit3b9cf3bdb3d7343915ed313ff68b26a26c1540ec (patch)
tree26900c89ffdfad14372374c083b9f4d2a4fbb5f2 /libavcodec/motion_est.c
parent2f16af0667c7a7b2a706f416b65052c15f22d255 (diff)
i think this if() is useless lets abuse our users to test this ;)
Originally committed as revision 7344 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/motion_est.c')
-rw-r--r--libavcodec/motion_est.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/motion_est.c b/libavcodec/motion_est.c
index a5d5e57e69..3fb0d5f3e1 100644
--- a/libavcodec/motion_est.c
+++ b/libavcodec/motion_est.c
@@ -119,6 +119,7 @@ static av_always_inline int cmp(MpegEncContext *s, const int x, const int y, con
int d;
//FIXME check chroma 4mv, (no crashes ...)
if(flags&FLAG_DIRECT){
+ assert(x >= c->xmin && hx <= c->xmax<<(qpel+1) && y >= c->ymin && hy <= c->ymax<<(qpel+1));
if(x >= c->xmin && hx <= c->xmax<<(qpel+1) && y >= c->ymin && hy <= c->ymax<<(qpel+1)){
const int time_pp= s->pp_time;
const int time_pb= s->pb_time;