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