updated on Thu Jan 26 12:02:26 UTC 2012
[aur-mirror.git] / tvtime-alsa / tvtime-1.0.1-gcc4.1.patch
blobd6d7e0278fdf0a028a40fd5c8aa071d6b6514f40
1 --- tvtime-1.0.1/plugins/tomsmocomp/TomsMoCompAll2.inc.gcc 2005-12-23 12:10:45.000000000 +0100
2 +++ tvtime-1.0.1/plugins/tomsmocomp/TomsMoCompAll2.inc 2005-12-23 12:19:35.000000000 +0100
3 @@ -5,9 +5,9 @@
4 #endif
6 #ifdef USE_STRANGE_BOB
7 -#define SEARCH_EFFORT_FUNC(n) DScalerFilterTomsMoComp::SEFUNC(n##_SB)
8 +#define SEARCH_EFFORT_FUNC(n) SEFUNC(n##_SB)
9 #else
10 -#define SEARCH_EFFORT_FUNC(n) DScalerFilterTomsMoComp::SEFUNC(n)
11 +#define SEARCH_EFFORT_FUNC(n) SEFUNC(n)
12 #endif
14 int SEARCH_EFFORT_FUNC(0) // we don't try at all ;-)
15 --- tvtime-1.0.1/plugins/greedyh.asm.gcc 2005-08-14 18:16:43.000000000 +0200
16 +++ tvtime-1.0.1/plugins/greedyh.asm 2005-12-23 12:02:29.000000000 +0100
17 @@ -18,7 +18,7 @@
19 #include "x86-64_macros.inc"
21 -void DScalerFilterGreedyH::FUNCT_NAME(TDeinterlaceInfo* pInfo)
22 +void FUNCT_NAME(TDeinterlaceInfo* pInfo)
24 int64_t i;
25 bool InfoIsOdd = (pInfo->PictureHistory[0]->Flags & PICTURE_INTERLACED_ODD) ? 1 : 0;
26 --- tvtime-1.0.1/plugins/tomsmocomp.cpp.gcc 2004-10-20 19:38:04.000000000 +0200
27 +++ tvtime-1.0.1/plugins/tomsmocomp.cpp 2005-12-23 12:02:29.000000000 +0100
28 @@ -31,7 +31,7 @@
30 #define IS_MMX
31 #define SSE_TYPE MMX
32 -#define FUNCT_NAME DScalerFilterTomsMoComp::filterDScaler_MMX
33 +#define FUNCT_NAME filterDScaler_MMX
34 #include "tomsmocomp/TomsMoCompAll.inc"
35 #undef IS_MMX
36 #undef SSE_TYPE
37 @@ -39,7 +39,7 @@
39 #define IS_3DNOW
40 #define SSE_TYPE 3DNOW
41 -#define FUNCT_NAME DScalerFilterTomsMoComp::filterDScaler_3DNOW
42 +#define FUNCT_NAME filterDScaler_3DNOW
43 #include "tomsmocomp/TomsMoCompAll.inc"
44 #undef IS_3DNOW
45 #undef SSE_TYPE
46 @@ -47,7 +47,7 @@
48 #define IS_SSE
49 #define SSE_TYPE SSE
50 -#define FUNCT_NAME DScalerFilterTomsMoComp::filterDScaler_SSE
51 +#define FUNCT_NAME filterDScaler_SSE
52 #include "tomsmocomp/TomsMoCompAll.inc"
53 #undef IS_SSE
54 #undef SSE_TYPE