summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_harddup.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2009-07-07 02:26:13 +0300
committerUoti Urpala <uau@glyph.nonexistent.invalid>2009-07-07 02:34:35 +0300
commit0eb321bf2c1cc0e048faff26a01f86cdd3ec254f (patch)
tree71cb9bd9ed121156d3382066c0722c73189afe04 /libmpcodecs/vf_harddup.c
parent6d908205fbadbdf7ccdc6c5e0eb918f0b43f16e0 (diff)
downloadmpv-0eb321bf2c1cc0e048faff26a01f86cdd3ec254f.tar.bz2
mpv-0eb321bf2c1cc0e048faff26a01f86cdd3ec254f.tar.xz
Remove trailing whitespace from most files
Diffstat (limited to 'libmpcodecs/vf_harddup.c')
-rw-r--r--libmpcodecs/vf_harddup.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libmpcodecs/vf_harddup.c b/libmpcodecs/vf_harddup.c
index 6bb84143d3..94fbcc2563 100644
--- a/libmpcodecs/vf_harddup.c
+++ b/libmpcodecs/vf_harddup.c
@@ -18,7 +18,7 @@ static int put_image(struct vf_instance* vf, mp_image_t *mpi, double pts)
mp_image_t *dmpi;
vf->priv->last_mpi = mpi;
-
+
dmpi = vf_get_image(vf->next, mpi->imgfmt,
MP_IMGTYPE_EXPORT, 0, mpi->width, mpi->height);
@@ -30,7 +30,7 @@ static int put_image(struct vf_instance* vf, mp_image_t *mpi, double pts)
dmpi->planes[2] = mpi->planes[2];
dmpi->stride[2] = mpi->stride[2];
}
-
+
return vf_next_put_image(vf, dmpi, pts);
}
@@ -72,5 +72,3 @@ const vf_info_t vf_info_harddup = {
open,
NULL
};
-
-