summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_lavcdeint.c
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-10 22:18:32 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-10 22:18:32 +0000
commitc7944423a3152cf731f8d7f18f1989d59ccfc935 (patch)
tree1ba4d67aaa3179ed1d6346f09f12411298f0bcb1 /libmpcodecs/vf_lavcdeint.c
parent52e890ea55c5eea5daeefcea8b81a346d67e65db (diff)
downloadmpv-c7944423a3152cf731f8d7f18f1989d59ccfc935.tar.bz2
mpv-c7944423a3152cf731f8d7f18f1989d59ccfc935.tar.xz
changing return type of put_image void->int
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7369 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vf_lavcdeint.c')
-rw-r--r--libmpcodecs/vf_lavcdeint.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmpcodecs/vf_lavcdeint.c b/libmpcodecs/vf_lavcdeint.c
index 8c64341ba2..e7e6107c3b 100644
--- a/libmpcodecs/vf_lavcdeint.c
+++ b/libmpcodecs/vf_lavcdeint.c
@@ -107,7 +107,7 @@ config (struct vf_instance_s* vf,
flags, outfmt);
}
-static void
+static int
put_image (struct vf_instance_s* vf, mp_image_t *mpi)
{
struct vf_priv_s *priv = vf->priv;
@@ -137,10 +137,10 @@ put_image (struct vf_instance_s* vf, mp_image_t *mpi)
priv->pix_fmt, priv->width, priv->height) < 0)
{
/* This should not happen -- see config() */
- return;
+ return 0;
}
- vf_next_put_image(vf, dmpi);
+ return vf_next_put_image(vf, dmpi);
}