(I've just put back libtool support.) needed for update of ffmpeg which in turn is needed for updates of eg vlc and gst-plugin-ffmpeg
40 lines
1,011 B
Text
40 lines
1,011 B
Text
$NetBSD: patch-an,v 1.2 2011/01/17 16:46:42 drochner Exp $
|
|
|
|
--- common/x86/predict-c.c.orig 2011-01-02 06:45:05.000000000 +0900
|
|
+++ common/x86/predict-c.c 2011-01-09 21:38:53.000000000 +0900
|
|
@@ -155,7 +155,7 @@
|
|
#endif
|
|
PREDICT_16x16_P( sse2 )
|
|
|
|
-#ifdef __GNUC__
|
|
+#if 0
|
|
static void x264_predict_16x16_p_ssse3( uint8_t *src )
|
|
{
|
|
int a, b, c, i00;
|
|
@@ -215,7 +215,7 @@
|
|
#endif
|
|
PREDICT_8x8_P( sse2 )
|
|
|
|
-#ifdef __GNUC__
|
|
+#if 0
|
|
static void x264_predict_8x8c_p_ssse3( uint8_t *src )
|
|
{
|
|
int a, b, c, i00;
|
|
@@ -418,7 +418,7 @@
|
|
if( !(cpu&X264_CPU_SSSE3) )
|
|
return;
|
|
pf[I_PRED_16x16_H] = x264_predict_16x16_h_ssse3;
|
|
-#ifdef __GNUC__
|
|
+#if 0
|
|
pf[I_PRED_16x16_P] = x264_predict_16x16_p_ssse3;
|
|
#endif
|
|
#endif // HIGH_BIT_DEPTH
|
|
@@ -447,7 +447,7 @@
|
|
if( !(cpu&X264_CPU_SSSE3) )
|
|
return;
|
|
pf[I_PRED_CHROMA_H] = x264_predict_8x8c_h_ssse3;
|
|
-#ifdef __GNUC__
|
|
+#if 0
|
|
pf[I_PRED_CHROMA_P] = x264_predict_8x8c_p_ssse3;
|
|
#endif
|
|
#endif // !HIGH_BIT_DEPTH
|