From 1888e57af7e1ce51517ad9bdc2d201eaf84a98d2 Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Sat, 29 May 2010 17:15:55 +0300 Subject: cosmetics: "struct vf_instance* vf" -> "struct vf_instance *vf" Change 'struct vf_instance' pointer arguments to more standard style as in the subject. Also some other minor formatting fixes. Patch by Diego Biurrun. --- libmpcodecs/vf_eq.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libmpcodecs/vf_eq.c') diff --git a/libmpcodecs/vf_eq.c b/libmpcodecs/vf_eq.c index 167cf28074..1cbffb24eb 100644 --- a/libmpcodecs/vf_eq.c +++ b/libmpcodecs/vf_eq.c @@ -132,7 +132,7 @@ static void (*process)(unsigned char *dest, int dstride, unsigned char *src, int /* FIXME: add packed yuv version of process */ -static int put_image(struct vf_instance* vf, mp_image_t *mpi, double pts) +static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts) { mp_image_t *dmpi; @@ -161,7 +161,7 @@ static int put_image(struct vf_instance* vf, mp_image_t *mpi, double pts) return vf_next_put_image(vf,dmpi, pts); } -static int control(struct vf_instance* vf, int request, void* data) +static int control(struct vf_instance *vf, int request, void* data) { vf_equalizer_t *eq; @@ -192,7 +192,7 @@ static int control(struct vf_instance* vf, int request, void* data) return vf_next_control(vf, request, data); } -static int query_format(struct vf_instance* vf, unsigned int fmt) +static int query_format(struct vf_instance *vf, unsigned int fmt) { switch (fmt) { case IMGFMT_YVU9: @@ -213,7 +213,7 @@ static int query_format(struct vf_instance* vf, unsigned int fmt) return 0; } -static void uninit(struct vf_instance* vf) +static void uninit(struct vf_instance *vf) { if (vf->priv->buf) free(vf->priv->buf); free(vf->priv); -- cgit v1.2.3