Commit 52985bd2 authored by Sam Hocevar's avatar Sam Hocevar

  - fixed SDL compilation, thanks to Colin.
  - disabled Altivec iDCT until it works.
parent a32ef53e
......@@ -753,7 +753,11 @@ lib/sdl.so: $(PLUGIN_SDL)
$(CC) $(PCFLAGS) -o $@ $^ $(PLCFLAGS) $(LIB_SDL)
lib/ts.so: $(PLUGIN_TS)
ifeq ($(SYS),darwin)
$(CC) $(PCFLAGS) -o $@ $^ $(PLCFLAGS) -framework AGL -framework Carbon
else
$(CC) $(PCFLAGS) -o $@ $^ $(PLCFLAGS)
endif
lib/x11.so: $(PLUGIN_X11)
ifeq ($(SYS),nto-qnx)
......
......@@ -2,7 +2,7 @@
* idctaltivec.c : Altivec IDCT module
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: idctaltivec.c,v 1.2 2001/03/21 02:58:29 sam Exp $
* $Id: idctaltivec.c,v 1.3 2001/03/26 19:06:18 sam Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
......@@ -148,7 +148,8 @@ static int idct_Probe( probedata_t *p_data )
}
else
{
return( 200 );
/* The Altivec iDCT is deactivated until it really works */
return( 0 /* 200 */ );
}
}
else
......
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