small fix

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6118 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-05-18 17:31:44 +00:00
parent 51273e9772
commit ba12a5e87a
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ static void put_image(struct vf_instance_s* vf, mp_image_t *mpi){
printf("crop area: X: %d..%d Y: %d..%d (-vop crop=%d:%d:%d:%d)\n",
vf->priv->x1,vf->priv->x2,
vf->priv->y1,vf->priv->y2,
(vf->priv->x2-x)&(~1),(vf->priv->y2-y)&(~1),x,y
(vf->priv->x2+1-x)&(~1),(vf->priv->y2+1-y)&(~1),x,y
);
vf_next_put_image(vf,dmpi);