# HG changeset patch # User arpi # Date 1025388727 0 # Node ID 242d1b98a15fe5e787b47016f24afa6a8582116f # Parent 7745d73a5f205d17376ad5946045f47e01c8f27f parameter overrides limit diff -r 7745d73a5f20 -r 242d1b98a15f libmpcodecs/vf_cropdetect.c --- a/libmpcodecs/vf_cropdetect.c Sat Jun 29 22:10:18 2002 +0000 +++ b/libmpcodecs/vf_cropdetect.c Sat Jun 29 22:12:07 2002 +0000 @@ -125,6 +125,7 @@ vf->put_image=put_image; vf->priv=malloc(sizeof(struct vf_priv_s)); vf->priv->limit=24; // should be option + if(args) vf->priv->limit=atoi(args); return 1; }