comparison libmpcodecs/vf_telecine.c @ 24605:8a6f80593529

Disable unused query_format functions for now until they are investigated and properly used/fixed. Fixes warnings: vf_softskip.c:50: warning: 'query_format' defined but not used vf_tfields.c:433: warning: 'query_format' defined but not used vf_telecine.c:91: warning: 'query_format' defined but not used vf_telecine.c:105: warning: 'config' defined but not used
author diego
date Wed, 26 Sep 2007 23:00:43 +0000
parents 5c3c7efd9b75
children 00fff9a3b735
comparison
equal deleted inserted replaced
24604:46bafd35bc5c 24605:8a6f80593529
85 return ret; 85 return ret;
86 } 86 }
87 return 0; 87 return 0;
88 } 88 }
89 89
90 #if 0
90 static int query_format(struct vf_instance_s* vf, unsigned int fmt) 91 static int query_format(struct vf_instance_s* vf, unsigned int fmt)
91 { 92 {
92 /* FIXME - figure out which other formats work */ 93 /* FIXME - figure out which other formats work */
93 switch (fmt) { 94 switch (fmt) {
94 case IMGFMT_YV12: 95 case IMGFMT_YV12:
103 int width, int height, int d_width, int d_height, 104 int width, int height, int d_width, int d_height,
104 unsigned int flags, unsigned int outfmt) 105 unsigned int flags, unsigned int outfmt)
105 { 106 {
106 return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt); 107 return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt);
107 } 108 }
109 #endif
108 110
109 static void uninit(struct vf_instance_s* vf) 111 static void uninit(struct vf_instance_s* vf)
110 { 112 {
111 free(vf->priv); 113 free(vf->priv);
112 } 114 }