1
mirror of https://code.videolan.org/videolan/vlc synced 2024-07-21 07:24:15 +02:00

Deinterlace prototype should be defined whether or not swscale is used.

This commit is contained in:
Jean-Paul Saman 2007-10-20 19:15:05 +00:00
parent 299be2de51
commit fe1ad10679

View File

@ -43,11 +43,11 @@
void E_(InitLibavcodec) ( vlc_object_t *p_object );
static int CheckInit( filter_t *p_filter );
static picture_t *Process( filter_t *p_filter, picture_t *p_pic );
#else
static picture_t *Deinterlace( filter_t *p_filter, picture_t *p_pic );
#endif
static picture_t *Deinterlace( filter_t *p_filter, picture_t *p_pic );
/*****************************************************************************
* filter_sys_t : filter descriptor
*****************************************************************************/