[MPlayer-cvslog] r24623 - trunk/libmpcodecs/vf_pullup.c
diego
subversion at mplayerhq.hu
Thu Sep 27 00:49:00 CEST 2007
Author: diego
Date: Thu Sep 27 00:48:59 2007
New Revision: 24623
Log:
Disable buggy unused function via #if 0, blessed by Rich.
Fixes warning:
vf_pullup.c: At top level:
vf_pullup.c:82: warning: 'get_image' defined but not used
Modified:
trunk/libmpcodecs/vf_pullup.c
Modified: trunk/libmpcodecs/vf_pullup.c
==============================================================================
--- trunk/libmpcodecs/vf_pullup.c (original)
+++ trunk/libmpcodecs/vf_pullup.c Thu Sep 27 00:48:59 2007
@@ -78,6 +78,7 @@ static void init_pullup(struct vf_instan
}
+#if 0
static void get_image(struct vf_instance_s* vf, mp_image_t *mpi)
{
struct pullup_context *c = vf->priv->ctx;
@@ -102,6 +103,7 @@ static void get_image(struct vf_instance
mpi->flags |= MP_IMGFLAG_DIRECT;
mpi->flags &= ~MP_IMGFLAG_DRAW_CALLBACK;
}
+#endif
static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts)
{
More information about the MPlayer-cvslog
mailing list