1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-21 07:16:56 +00:00

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


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24625 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-09-26 23:00:43 +00:00
parent 1ddfe30978
commit 81cebd7e45
3 changed files with 6 additions and 0 deletions

View File

@ -46,6 +46,7 @@ static int control(struct vf_instance_s* vf, int request, void* data)
return vf_next_control(vf, request, data);
}
#if 0
static int query_format(struct vf_instance_s* vf, unsigned int fmt)
{
/* FIXME - figure out which other formats work */
@ -57,6 +58,7 @@ static int query_format(struct vf_instance_s* vf, unsigned int fmt)
}
return 0;
}
#endif
static void uninit(struct vf_instance_s* vf)
{

View File

@ -87,6 +87,7 @@ static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts)
return 0;
}
#if 0
static int query_format(struct vf_instance_s* vf, unsigned int fmt)
{
/* FIXME - figure out which other formats work */
@ -105,6 +106,7 @@ static int config(struct vf_instance_s* vf,
{
return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt);
}
#endif
static void uninit(struct vf_instance_s* vf)
{

View File

@ -429,6 +429,7 @@ static int continue_buffered_image(struct vf_instance_s *vf)
return ret;
}
#if 0
static int query_format(struct vf_instance_s* vf, unsigned int fmt)
{
/* FIXME - figure out which other formats work */
@ -440,6 +441,7 @@ static int query_format(struct vf_instance_s* vf, unsigned int fmt)
}
return 0;
}
#endif
static int config(struct vf_instance_s* vf,
int width, int height, int d_width, int d_height,