# HG changeset patch # User michael # Date 1166361094 0 # Node ID 4e75fbc983c95085da28b0c12ef023703ce0da4d # Parent dbaae8e5ec55063a65d8c62b1127131e3cbf0258 warn user if the selected diamond size is larger then the motion estimation score cache size diff -r dbaae8e5ec55 -r 4e75fbc983c9 motion_est.c --- a/motion_est.c Sun Dec 17 12:07:09 2006 +0000 +++ b/motion_est.c Sun Dec 17 13:11:34 2006 +0000 @@ -231,6 +231,12 @@ void ff_init_me(MpegEncContext *s){ MotionEstContext * const c= &s->me; c->avctx= s->avctx; + int cache_size= FFMIN(ME_MAP_SIZE>>ME_MAP_SHIFT, 1<avctx->dia_size)&255, FFABS(s->avctx->pre_dia_size)&255); + + if(cache_size < 2*dia_size && !c->stride){ + av_log(s->avctx, AV_LOG_INFO, "ME_MAP size may be a little small for the selected diamond size\n"); + } ff_set_cmp(&s->dsp, s->dsp.me_pre_cmp, c->avctx->me_pre_cmp); ff_set_cmp(&s->dsp, s->dsp.me_cmp, c->avctx->me_cmp);