summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_cropdetect.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmpcodecs/vf_cropdetect.c')
-rw-r--r--libmpcodecs/vf_cropdetect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpcodecs/vf_cropdetect.c b/libmpcodecs/vf_cropdetect.c
index e81b46c32a..e91f537a04 100644
--- a/libmpcodecs/vf_cropdetect.c
+++ b/libmpcodecs/vf_cropdetect.c
@@ -73,7 +73,7 @@ static int put_image(struct vf_instance* vf, mp_image_t *mpi, double pts){
dmpi->height=mpi->height;
if(++vf->priv->fno>2){ // ignore first 2 frames - they may be empty
-
+
for(y=0;y<vf->priv->y1;y++){
if(checkline(mpi->planes[0]+mpi->stride[0]*y,bpp,mpi->w,bpp)>vf->priv->limit){
vf->priv->y1=y;
@@ -106,7 +106,7 @@ if(++vf->priv->fno>2){ // ignore first 2 frames - they may be empty
// make sure they stay rounded!
x=(vf->priv->x1+1)&(~1);
y=(vf->priv->y1+1)&(~1);
-
+
w = vf->priv->x2 - x + 1;
h = vf->priv->y2 - y + 1;