mirror of
https://github.com/mpv-player/mpv
synced 2025-03-19 09:57:34 +00:00
small fix
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6118 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
51273e9772
commit
ba12a5e87a
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user