Add files from parent branch HEAD:
[pkgsrc.git] / multimedia / x264-devel / patches / patch-an
1 $NetBSD$
2
3 --- common/x86/predict-c.c.orig 2009-04-05 21:31:54.000000000 +0200
4 +++ common/x86/predict-c.c
5 @@ -110,7 +110,7 @@ PREDICT_16x16_P( mmxext )
6  #endif
7  PREDICT_16x16_P( sse2   )
8  
9 -#ifdef __GNUC__
10 +#if 0
11  static void predict_16x16_p_ssse3( uint8_t *src )
12  {
13      int a, b, c, i00;
14 @@ -170,7 +170,7 @@ PREDICT_8x8_P( mmxext )
15  #endif
16  PREDICT_8x8_P( sse2   )
17  
18 -#ifdef __GNUC__
19 +#if 0
20  static void predict_8x8c_p_ssse3( uint8_t *src )
21  {
22      int a, b, c, i00;
23 @@ -394,7 +394,7 @@ void x264_predict_16x16_init_mmx( int cp
24      if( !(cpu&X264_CPU_SSSE3) )
25          return;
26      pf[I_PRED_16x16_H]      = predict_16x16_h_ssse3;
27 -#ifdef __GNUC__
28 +#if 0
29      pf[I_PRED_16x16_P]      = predict_16x16_p_ssse3;
30  #endif
31  }
32 @@ -421,7 +421,7 @@ void x264_predict_8x8c_init_mmx( int cpu
33      if( !(cpu&X264_CPU_SSSE3) )
34          return;
35      pf[I_PRED_CHROMA_H]       = predict_8x8c_h_ssse3;
36 -#ifdef __GNUC__
37 +#if 0
38      pf[I_PRED_CHROMA_P]       = predict_8x8c_p_ssse3;
39  #endif
40  }