Commit 3c4a7fc5 authored by Sam Hocevar's avatar Sam Hocevar

* src/video_output/video_output.c:

    + Fixed an undefined function warning.
parent 890ba553
......@@ -228,6 +228,8 @@ VLC_EXPORT( int, vout_vaControlDefault, ( vout_thread_t *, int, va_list ) );
VLC_EXPORT( void *, vout_RequestWindow, ( vout_thread_t *, int *, int *, unsigned int *, unsigned int * ) );
VLC_EXPORT( void, vout_ReleaseWindow, ( vout_thread_t *, void * ) );
VLC_EXPORT( int, vout_ControlWindow, ( vout_thread_t *, void *, int, va_list ) );
void vout_IntfInit( vout_thread_t * );
static inline int vout_vaControl( vout_thread_t *p_vout, int i_query,
va_list args )
......
......@@ -185,6 +185,7 @@ uint32_t CPUCapabilities( void )
}
# endif
}
if( i_edx & 0x04000000 )
{
# if defined(CAN_COMPILE_SSE) && !defined(SYS_BEOS)
......
......@@ -57,8 +57,6 @@ static int BinaryLog ( uint32_t );
static void MaskToShift ( int *, int *, uint32_t );
static void InitWindowSize ( vout_thread_t *, int *, int * );
void vout_IntfInit( vout_thread_t * );
/* Object variables callbacks */
static int DeinterlaceCallback( vlc_object_t *, char const *,
vlc_value_t, vlc_value_t, void * );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment