Commit 5180b49d authored by Eric Petit's avatar Eric Petit

deinterlace.c : missing 'else' that prevented MergeAltivec from being used.

parent 405c632c
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* deinterlace.c : deinterlacer plugin for vlc * deinterlace.c : deinterlacer plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2000, 2001, 2002, 2003 VideoLAN * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
* $Id: deinterlace.c,v 1.23 2004/02/07 13:25:50 fenrir Exp $ * $Id: deinterlace.c,v 1.24 2004/02/13 10:42:24 titer Exp $
* *
* Author: Sam Hocevar <sam@zoy.org> * Author: Sam Hocevar <sam@zoy.org>
* *
...@@ -160,6 +160,7 @@ static int Create( vlc_object_t *p_this ) ...@@ -160,6 +160,7 @@ static int Create( vlc_object_t *p_this )
p_vout->p_sys->pf_merge = MergeAltivec; p_vout->p_sys->pf_merge = MergeAltivec;
p_vout->p_sys->pf_end_merge = NULL; p_vout->p_sys->pf_end_merge = NULL;
} }
else
#endif #endif
#if defined(CAN_COMPILE_SSE) #if defined(CAN_COMPILE_SSE)
if( p_vout->p_libvlc->i_cpu & CPU_CAPABILITY_SSE2 ) if( p_vout->p_libvlc->i_cpu & CPU_CAPABILITY_SSE2 )
......
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