disabled vidix dependency

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8081 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-11-03 14:27:32 +00:00
parent 98769704e2
commit 2ace0d316d
1 changed files with 4 additions and 1 deletions

View File

@ -782,6 +782,7 @@ uninit( void )
*/ */
} }
#if 0
static int static int
directfb_set_video_eq( const vidix_video_eq_t * info ) directfb_set_video_eq( const vidix_video_eq_t * info )
{ {
@ -849,6 +850,7 @@ directfb_get_video_eq( vidix_video_eq_t * info )
return 0; return 0;
} }
#endif
static uint32_t static uint32_t
control( uint32_t request, void *data, ... ) control( uint32_t request, void *data, ... )
@ -856,6 +858,7 @@ control( uint32_t request, void *data, ... )
switch (request) { switch (request) {
case VOCTRL_QUERY_FORMAT: case VOCTRL_QUERY_FORMAT:
return query_format( *((uint32_t *) data) ); return query_format( *((uint32_t *) data) );
#if 0
case VOCTRL_SET_EQUALIZER: case VOCTRL_SET_EQUALIZER:
{ {
va_list ap; va_list ap;
@ -915,8 +918,8 @@ control( uint32_t request, void *data, ... )
return VO_TRUE; return VO_TRUE;
} }
#endif
} }
return VO_NOTIMPL; return VO_NOTIMPL;
} }