Commit a2e881cb authored by Antoine Cellerier's avatar Antoine Cellerier

* deinterlace.c: compile fix by ILEoo.

parent c8fc905f
...@@ -1965,7 +1965,7 @@ static void RenderX( vout_thread_t *p_vout, ...@@ -1965,7 +1965,7 @@ static void RenderX( vout_thread_t *p_vout,
uint8_t *src = &p_pic->p[i_plane].p_pixels[8*y*i_src]; uint8_t *src = &p_pic->p[i_plane].p_pixels[8*y*i_src];
#ifdef CAN_COMPILE_MMXEXT #ifdef CAN_COMPILE_MMXEXT
if( vlc_CPU & CPU_CAPABILITY_MMXEXT ) if( vlc_CPU() & CPU_CAPABILITY_MMXEXT )
XDeintBand8x8MMXEXT( dst, i_dst, src, i_src, i_mbx, i_modx ); XDeintBand8x8MMXEXT( dst, i_dst, src, i_src, i_mbx, i_modx );
else else
#endif #endif
...@@ -1992,7 +1992,7 @@ static void RenderX( vout_thread_t *p_vout, ...@@ -1992,7 +1992,7 @@ static void RenderX( vout_thread_t *p_vout,
} }
#ifdef CAN_COMPILE_MMXEXT #ifdef CAN_COMPILE_MMXEXT
if( vlc_CPU & CPU_CAPABILITY_MMXEXT ) if( vlc_CPU() & CPU_CAPABILITY_MMXEXT )
emms(); emms();
#endif #endif
} }
......
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