[Ffmpeg-cvslog] r7326 - trunk/libavcodec/motion_est.c
michael
subversion
Sun Dec 17 14:11:34 CET 2006
Author: michael
Date: Sun Dec 17 14:11:34 2006
New Revision: 7326
Modified:
trunk/libavcodec/motion_est.c
Log:
warn user if the selected diamond size is larger then the motion estimation score cache size
Modified: trunk/libavcodec/motion_est.c
==============================================================================
--- trunk/libavcodec/motion_est.c (original)
+++ trunk/libavcodec/motion_est.c Sun Dec 17 14:11:34 2006
@@ -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<<ME_MAP_SHIFT);
+ int dia_size= FFMAX(FFABS(s->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);
More information about the ffmpeg-cvslog
mailing list