changeset 23625:cbc7ab25255e

Remove unused query_format function in vf_harddup.
author reimar
date Sun, 24 Jun 2007 13:01:22 +0000
parents f86b9bcf2d03
children 53cc0856f3fe
files libmpcodecs/vf_harddup.c
diffstat 1 files changed, 0 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/vf_harddup.c	Sun Jun 24 12:43:45 2007 +0000
+++ b/libmpcodecs/vf_harddup.c	Sun Jun 24 13:01:22 2007 +0000
@@ -50,18 +50,6 @@
 	return vf_next_control(vf, request, data);
 }
 
-static int query_format(struct vf_instance_s* vf, unsigned int fmt)
-{
-	/* FIXME - figure out which other formats work */
-	switch (fmt) {
-	case IMGFMT_YV12:
-	case IMGFMT_IYUV:
-	case IMGFMT_I420:
-		return vf_next_query_format(vf, fmt);
-	}
-	return 0;
-}
-
 static void uninit(struct vf_instance_s* vf)
 {
 	free(vf->priv);