comparison libmpcodecs/vf_cropdetect.c @ 11261:835822ce4bb1

-vop ---> -vf
author diego
date Sat, 25 Oct 2003 18:44:41 +0000
parents e9a2af584986
children 08bb01a9905a
comparison
equal deleted inserted replaced
11260:1c269ab5f3f6 11261:835822ce4bb1
104 } 104 }
105 105
106 x=(vf->priv->x1+1)&(~1); 106 x=(vf->priv->x1+1)&(~1);
107 y=(vf->priv->y1+1)&(~1); 107 y=(vf->priv->y1+1)&(~1);
108 108
109 printf("crop area: X: %d..%d Y: %d..%d (-vop crop=%d:%d:%d:%d)\n", 109 printf("crop area: X: %d..%d Y: %d..%d (-vf crop=%d:%d:%d:%d)\n",
110 vf->priv->x1,vf->priv->x2, 110 vf->priv->x1,vf->priv->x2,
111 vf->priv->y1,vf->priv->y2, 111 vf->priv->y1,vf->priv->y2,
112 (vf->priv->x2+1-x)&(~1),(vf->priv->y2+1-y)&(~1),x,y 112 (vf->priv->x2+1-x)&(~1),(vf->priv->y2+1-y)&(~1),x,y
113 ); 113 );
114 114