* updated kmousetool (21.12.1 -> 21.12.2), untested
[t2-trunk.git] / package / multimedia / tvtime / hotfix-gcc41.patch
blobc9e86dd72263b530ad44e37f4e775bed3bf4d6f7
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
3 #
4 # T2 SDE: package/.../tvtime/gcc41.patch
5 # Copyright (C) 2006 The T2 SDE Project
6 #
7 # More information can be found in the files COPYING and README.
8 #
9 # This patch file is dual-licensed. It is available under the license the
10 # patched project is licensed under, as long as it is an OpenSource license
11 # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
12 # of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 # --- T2-COPYRIGHT-NOTE-END ---
17 diff -Nur tvtime-1.0.2-orig/plugins/greedyh.asm tvtime-1.0.2/plugins/greedyh.asm
18 --- tvtime-1.0.2-orig/plugins/greedyh.asm 2005-08-14 16:16:43.000000000 +0000
19 +++ tvtime-1.0.2/plugins/greedyh.asm 2006-04-01 21:31:27.554365750 +0000
20 @@ -18,7 +18,7 @@
22 #include "x86-64_macros.inc"
24 -void DScalerFilterGreedyH::FUNCT_NAME(TDeinterlaceInfo* pInfo)
25 +void FUNCT_NAME(TDeinterlaceInfo* pInfo)
27 int64_t i;
28 bool InfoIsOdd = (pInfo->PictureHistory[0]->Flags & PICTURE_INTERLACED_ODD) ? 1 : 0;
29 diff -Nur tvtime-1.0.2-orig/plugins/tomsmocomp/TomsMoCompAll2.inc tvtime-1.0.2/plugins/tomsmocomp/TomsMoCompAll2.inc
30 --- tvtime-1.0.2-orig/plugins/tomsmocomp/TomsMoCompAll2.inc 2004-10-20 15:31:05.000000000 +0000
31 +++ tvtime-1.0.2/plugins/tomsmocomp/TomsMoCompAll2.inc 2006-04-01 21:45:51.680370250 +0000
32 @@ -5,9 +5,9 @@
33 #endif
35 #ifdef USE_STRANGE_BOB
36 -#define SEARCH_EFFORT_FUNC(n) DScalerFilterTomsMoComp::SEFUNC(n##_SB)
37 +#define SEARCH_EFFORT_FUNC(n) SEFUNC(n##_SB)
38 #else
39 -#define SEARCH_EFFORT_FUNC(n) DScalerFilterTomsMoComp::SEFUNC(n)
40 +#define SEARCH_EFFORT_FUNC(n) SEFUNC(n)
41 #endif
43 int SEARCH_EFFORT_FUNC(0) // we don't try at all ;-)
44 diff -Nur tvtime-1.0.2-orig/plugins/tomsmocomp.cpp tvtime-1.0.2/plugins/tomsmocomp.cpp
45 --- tvtime-1.0.2-orig/plugins/tomsmocomp.cpp 2004-10-20 17:38:04.000000000 +0000
46 +++ tvtime-1.0.2/plugins/tomsmocomp.cpp 2006-04-01 21:38:16.927950000 +0000
47 @@ -31,7 +31,7 @@
49 #define IS_MMX
50 #define SSE_TYPE MMX
51 -#define FUNCT_NAME DScalerFilterTomsMoComp::filterDScaler_MMX
52 +#define FUNCT_NAME filterDScaler_MMX
53 #include "tomsmocomp/TomsMoCompAll.inc"
54 #undef IS_MMX
55 #undef SSE_TYPE
56 @@ -39,7 +39,7 @@
58 #define IS_3DNOW
59 #define SSE_TYPE 3DNOW
60 -#define FUNCT_NAME DScalerFilterTomsMoComp::filterDScaler_3DNOW
61 +#define FUNCT_NAME filterDScaler_3DNOW
62 #include "tomsmocomp/TomsMoCompAll.inc"
63 #undef IS_3DNOW
64 #undef SSE_TYPE
65 @@ -47,7 +47,7 @@
67 #define IS_SSE
68 #define SSE_TYPE SSE
69 -#define FUNCT_NAME DScalerFilterTomsMoComp::filterDScaler_SSE
70 +#define FUNCT_NAME filterDScaler_SSE
71 #include "tomsmocomp/TomsMoCompAll.inc"
72 #undef IS_SSE
73 #undef SSE_TYPE